From efff84b56a7e5b1cec4262a4635553a397531a9f Mon Sep 17 00:00:00 2001 From: Gokul Kartha Date: Fri, 11 Jul 2025 12:57:40 +0200 Subject: [PATCH] Fixes for a runtime path issue due to the previous commit 68e045476419a3c84faaa7e82da73f09c2a8b616 --- generate_proto.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate_proto.py b/generate_proto.py index 288397f..9288621 100644 --- a/generate_proto.py +++ b/generate_proto.py @@ -40,8 +40,8 @@ def generate_all_protos(): '', f'-I{PROTO_DIR}', f'-I{PROTOBUF_INCLUDE}', - f'--python_out={OUTPUT_DIR}', - f'--grpc_python_out={OUTPUT_DIR}', + '--python_out=.', + '--grpc_python_out=.', proto_file, ] )