Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Annotate string constants in `synapse.api.constants` with `Final` (#11356) | Sean Quah | 2021-11-25 | 1 | -0/+1 |
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, ...) ``` |