hatchet
hatchet copied to clipboard
chore(python-sdk): fix generation of grpc files to avoid manually writing imports
Right now, python _grpc.py files need to be fixed manually, for example:
from .workflows_pb2 import workflows__pb2
Needs to be replaced with:
from . import workflows_pb2 as workflows__pb2
We should do this in the generation script.