We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4c8a7d commit 0b472d4Copy full SHA for 0b472d4
1 file changed
unittests/test_functools_lru.py
@@ -176,5 +176,7 @@ async def other_method(self):
176
if name != "method":
177
continue
178
# test direct and literal annotation styles
179
- assert get_annotations(Bar.method, format=Format.STRING)['int_arg'] == "int"
180
- assert get_annotations(Bar().method, format=Format.STRING)['int_arg'] == "int"
+ assert get_annotations(Bar.method, format=Format.STRING)["int_arg"] == "int"
+ assert (
181
+ get_annotations(Bar().method, format=Format.STRING)["int_arg"] == "int"
182
+ )
0 commit comments