mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-26 12:36:01 -05: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, ...) ```