summary refs log tree commit diff
path: root/stubs/frozendict.pyi
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-01-08 14:08:44 +0000
committerGitHub <noreply@github.com>2021-01-08 14:08:44 +0000
commit23a59d24ae34493c2e54e1601b2d3757df35095e (patch)
tree95bdd12088abb1c0a019d43a41ddfcfb092f8565 /stubs/frozendict.pyi
parentAllow running sendToDevice on workers (#9044) (diff)
downloadsynapse-23a59d24ae34493c2e54e1601b2d3757df35095e.tar.xz
Run the linters on a consistent list of files (#9038)
We were running some linters on some files and some on others. Extract a common
setting and use it everywhere.
Diffstat (limited to 'stubs/frozendict.pyi')
-rw-r--r--stubs/frozendict.pyi11
1 files changed, 1 insertions, 10 deletions
diff --git a/stubs/frozendict.pyi b/stubs/frozendict.pyi
index 3f3af59f26..0368ba4703 100644
--- a/stubs/frozendict.pyi
+++ b/stubs/frozendict.pyi
@@ -15,16 +15,7 @@
 
 # Stub for frozendict.
 
-from typing import (
-    Any,
-    Hashable,
-    Iterable,
-    Iterator,
-    Mapping,
-    overload,
-    Tuple,
-    TypeVar,
-)
+from typing import Any, Hashable, Iterable, Iterator, Mapping, Tuple, TypeVar, overload
 
 _KT = TypeVar("_KT", bound=Hashable)  # Key type.
 _VT = TypeVar("_VT")  # Value type.