Results 19 comments of Adrien

Hello, and thank you for the work! I agree that it would be a great idea to support this. However, I wouldn't merge the PR as it is now: indeed,...

Hello! Due to the difficulty to have PR approved, the impossibility to become a maintainer of this repo as well as to have a better repo name, after discussing with...

Hello, do you have a minimal working example? I was not able to reproduce it simply. For example, this works well: ```python import ray import betterproto ray.init() class Color(betterproto.Enum): RED...

Thank you, I was able to reproduce the second error ("cannot reassign Enum members.") on this version of betterproto. Recently, I've been mostly working on a fork here: https://github.com/betterproto/python-betterproto2 In...

I think it will probably be the case, but I need to talk more about this with the original maintainers (they seem to agree but I've been doing a lot...

To avoid silencing these errors, it is possible to add a parameter `undefined=jinja2.StrictUndefined` to the jinja2 environment. I didn't add it here since other errors are currently raised, but I...

It is defined at the top of the file on purpose, as suggested by PEP-8: https://peps.python.org/pep-0008/#module-level-dunder-names

> Please can you add a test that this exists and avoids importing dataclasses etc? I added a test that check that `__all__` is correctly defined. However, I'm not sure...