Luca Dorigo

Results 27 comments of Luca Dorigo

I strongly agree with @Aran-Fey that until this is solved, it would be *much* better to preserve the function signature at the cost of not checking that parameters are hashable...

Is there any way or workaround to currently type it properly? I'm having to add #type: ignore all over our codebase 😞

FYI: for this work (at least for us) it's sufficient to initialize beanie as follows: ``` client = AsyncIOMotorClient(mongo_url, uuidRepresentation="standard") await init_beanie(database=client.get_database(), document_models=DOCUMENT_MODELS) ``` I think it should *probably* still...

It's unclear why there are so many new files - maybe not everything in /src has to be included in git?

It looks like grpc-generated files are called `xxx_grpc` rather than `_pb2_grpc`. Probably the original files were generated as protobuf 2, which is now replaced?

I removed the extra files, please check this is correct

I asked around in the gitter chat and it seems like using store.get/set_global_value is the way to go. So I think the solution here would simply be to remove that...