Skip to content

Commit

Permalink
Fix lint issue (#2948)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesszzzz committed Sep 6, 2024
1 parent 08ff298 commit 30d8a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_helpers/build_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def run(self) -> None: # type: ignore

class SDistCommand(sdist.sdist):
def run(self) -> None:
if not self.dry_run: # type: ignore
if not self.dry_run:
self.run_command("clean")
run_antlr(self)
sdist.sdist.run(self)
Expand Down

0 comments on commit 30d8a25

Please sign in to comment.