Skip to content

Commit

Permalink
Update clean.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kaliv0 authored May 15, 2024
1 parent 18c6fd6 commit fff63c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def _get_multiline_imports(self, i: int) -> tuple[int, list[str]]:
imported = []
i += 1
while (line := self.lines[i]) != Tokens.RIGHT_PAREN:
imported.append(line.strip().rstrip(",")) # FIXME
imported.append(line.strip().rstrip(","))
i += 1
return i, imported

Expand Down

0 comments on commit fff63c8

Please sign in to comment.