hatchet-dev/hatchet

chore(python-sdk): fix generation of grpc files to avoid manually writing imports

abelanger5 opened this issue · 0 comments

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.