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 8a9c21d commit 304a52cCopy full SHA for 304a52c
flake8_async/visitors/visitor91x.py
@@ -917,7 +917,9 @@ def leave_Match_subject(self, node: cst.Match) -> None:
917
if not self.async_function:
918
return
919
self.save_state(node, "match_state", copy=True)
920
- self.match_state = MatchState(self.uncheckpointed_statements.copy())
+ self.match_state = MatchState(
921
+ base_uncheckpointed_statements=self.uncheckpointed_statements.copy()
922
+ )
923
924
def visit_MatchCase(self, node: cst.MatchCase) -> None:
925
# enter each case from the state after parsing the subject
0 commit comments