diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-04-27 07:59:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 07:59:14 -0400 |
commit | a346b43837ed83e311bc7fe6108a789f91a5199f (patch) | |
tree | 184ab5ec00643b2da233f6c54389094aa3525a05 /mypy.ini | |
parent | Add a nix flake that sets up a development environment (via devenv) (#15495) (diff) | |
download | synapse-a346b43837ed83e311bc7fe6108a789f91a5199f.tar.xz |
Check databases/__init__ and main/cache with mypy. (#15496)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mypy.ini b/mypy.ini index 8fb87b9b74..3b17c59dfc 100644 --- a/mypy.ini +++ b/mypy.ini @@ -28,13 +28,10 @@ files = # https://docs.python.org/3/library/re.html#re.X exclude = (?x) ^( - |synapse/storage/databases/__init__.py - |synapse/storage/databases/main/cache.py |synapse/storage/schema/ )$ [mypy-synapse.metrics._reactor_metrics] -disallow_untyped_defs = False # This module imports select.epoll. That exists on Linux, but doesn't on macOS. # See https://github.com/matrix-org/synapse/pull/11771. warn_unused_ignores = False |