We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75f48c commit 8c6851cCopy full SHA for 8c6851c
flake8_async/runner.py
@@ -143,9 +143,9 @@ def run(self) -> Iterable[Error]:
143
# identity). Parser output and the result of a prior .visit() never
144
# share nodes, so the copy is wasted work. This stays safe as long
145
# 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)
+ self.module = cst.MetadataWrapper(self.module, unsafe_skip_copy=True).visit(
+ v
+ )
149
150
yield from self.state.problems
151
0 commit comments