Skip to content

Commit 37f13a3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e214e77 commit 37f13a3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_nodes.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1031,9 +1031,7 @@ def annotated_user_cached_property(self): return 42
10311031
annotated_user_cached_p = cls.annotated_user_cached_property
10321032
"""
10331033
)
1034-
for prop in (
1035-
"annotated_user_cached_p",
1036-
):
1034+
for prop in ("annotated_user_cached_p",):
10371035
inferred = next(ast[prop].infer())
10381036
self.assertIsInstance(inferred, nodes.Const, prop)
10391037
self.assertEqual(inferred.value, 42, prop)

0 commit comments

Comments
 (0)