Altay Sansal
Altay Sansal
I can also confirm this is an issue with Python and not C++. I have this mock bidirectional streaming RPC. ```idl // Filepath: {project_root}/schema/service.fbs table StreamRequest { message:string; } table...
Ok comparing these lines in Python (red) and Go (green) implementations are below. The path is commented out for some reason? https://github.com/google/flatbuffers/blob/master/src/idl_gen_grpc.cpp ```diff ... -456 bool GeneratePythonGRPC(const Parser &parser, const...
With this modification, it does output it to the right place. I can do a PR if there are no objections to this. Does it make sense to put the...
@Mark-Niemeyer can you try my PR branch and see if it fixes your issue as well?
Hey everyone, this is excellent. I tried it in my project, and it works as expected, minus some code that doesn't get annotated. For instance, I have this schema: ```idl...
First things first, don't `aiofiles` apply to local files? `gcsfs` is used for remote files on Google Cloud Storage, so wouldn't it make sense to think about this in the...
P.S. I am a little confused. This PR shows up in `gcsfs`; however, it is merging into `fsspec`, but editing `gcsfs` code.
> > it is merging into fsspec, but editing gcsfs code. > > Here, `fsspec` is the org, so it means merging into `fsspec/gcsfs:main` Ah I see. It seems like...
This is because the `lark` dependency is not installed. If you look at where `v_args` is coming from it is from `lark`. It is an optional dependency for some reason....
Yea; it does have a try except but I think it has a bug. If it doesn't exist it just doesn't import it hence import error happens.