summary refs log tree commit diff
path: root/scripts-dev/lint.sh
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2021-03-30 10:30:43 +0100
committerGitHub <noreply@github.com>2021-03-30 10:30:43 +0100
commitf380bb77d19e7dd4ee6f61cd489e240ee4aa8fc2 (patch)
tree2b0a723134b71a1d28fcc822e6c9b4b18295d00d /scripts-dev/lint.sh
parentAdd type hints to DictionaryCache and TTLCache. (#9442) (diff)
downloadsynapse-f380bb77d19e7dd4ee6f61cd489e240ee4aa8fc2.tar.xz
Use 'dmypy run' in lint.sh instead of 'mypy' (#9701)
For it's obvious performance benefits. `dmypy` support landed in #9692.
Diffstat (limited to 'scripts-dev/lint.sh')
-rwxr-xr-xscripts-dev/lint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/lint.sh b/scripts-dev/lint.sh
index 9761e97594..41415ee07b 100755
--- a/scripts-dev/lint.sh
+++ b/scripts-dev/lint.sh
@@ -95,4 +95,4 @@ isort "${files[@]}"
 python3 -m black "${files[@]}"
 ./scripts-dev/config-lint.sh
 flake8 "${files[@]}"
-mypy
+dmypy run