diff options
author | David Robertson <davidr@element.io> | 2021-10-08 14:49:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-08 14:49:41 +0100 |
commit | 797ee7812db28f6cf130d68e2d10911c826b0be5 (patch) | |
tree | 7dc5c31a4f18ebdcdcae21d9987f85bfd8892a45 /synapse/push | |
parent | Fix overwriting profile when making room public (#11003) (diff) | |
download | synapse-797ee7812db28f6cf130d68e2d10911c826b0be5.tar.xz |
Relax `ignore-missing-imports` for modules that have stubs now and update mypy (#11006)
Updating mypy past version 0.9 means that third-party stubs are no-longer distributed with typeshed. See http://mypy-lang.blogspot.com/2021/06/mypy-0900-released.html for details. We therefore pull in stub packages in setup.py Additionally, some modules that we were previously ignoring import failures for now have stubs. So let's use them. The rest of this change consists of fixups to make the newer mypy + stubs pass CI. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/mailer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py index e38e3c5d44..ce299ba3da 100644 --- a/synapse/push/mailer.py +++ b/synapse/push/mailer.py @@ -892,7 +892,7 @@ def safe_text(raw_text: str) -> jinja2.Markup: A Markup object ready to safely use in a Jinja template. """ return jinja2.Markup( - bleach.linkify(bleach.clean(raw_text, tags=[], attributes={}, strip=False)) + bleach.linkify(bleach.clean(raw_text, tags=[], attributes=[], strip=False)) ) |