mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
7862f821de
This change makes mypy complain if the constants are ever reassigned, and, more usefully, makes mypy type them as `Literal`s instead of `str`s, allowing code of the following form to pass mypy: ```py def do_something(membership: Literal["join", "leave"], ...): ... do_something(Membership.JOIN, ...) ```
2 lines
108 B
Plaintext
2 lines
108 B
Plaintext
Add `Final` annotation to string constants in `synapse.api.constants` so that they get typed as `Literal`s.
|