Damien Elmes
Damien Elmes
Ok, I see. This was not something I tried to support, as once the code has been tested locally in the emulator, it can be pushed to CI and the...
Where are you seeing mutable? I looked in the generated Note.java, and it's a plain list: ```java /** * repeated string fields = 7; * @return A list containing the...
Sorry, ignore me - I assumed that List was always an immutable variant in Java, but apparently that's not the case.
And this is not our codegen by the way - it's the output of protoc.
I'm going to assume this has been addressed - if you can still reproduce your problems when a 2.17 (alpha) release comes out, please let us know.
Media syncing is going to receive some refactoring in the not-too-distant future, so it might be worth holding off on any changes here until that's done.
@BrayanDSO still an issue?
You can store the ID in a separate field instead - eg three fields, "Front", "Back", and "Page Number". Also please note that you need to use random IDs for...
For what it's worth, the type awareness of pylint is the killer feature that keeps us using it in our project despite how painfully slow it is. Our first-party code...
Mypy has a check_untyped_defs which sounds equivalent, and we use that. We currently rely on mypy's no_strict_optional which pyright has no equivalent to, so pyright is not currently usable on...