hatchet icon indicating copy to clipboard operation
hatchet copied to clipboard

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

Open abelanger5 opened this issue 1 year ago • 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.

abelanger5 avatar Jan 26 '24 20:01 abelanger5