Skip to content

Commit 8c6851c

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

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flake8_async/runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ def run(self) -> Iterable[Error]:
143143
# identity). Parser output and the result of a prior .visit() never
144144
# share nodes, so the copy is wasted work. This stays safe as long
145145
# as no visitor returns a cached CST node from multiple leave_* calls.
146-
self.module = cst.MetadataWrapper(
147-
self.module, unsafe_skip_copy=True
148-
).visit(v)
146+
self.module = cst.MetadataWrapper(self.module, unsafe_skip_copy=True).visit(
147+
v
148+
)
149149

150150
yield from self.state.problems
151151

0 commit comments

Comments
 (0)