Skip to content

Commit

Permalink
fix: remove noisy ruff rules
Browse files Browse the repository at this point in the history
  • Loading branch information
fritz-astronomer committed Dec 10, 2024
1 parent 75a8271 commit 787aba2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion orbiter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import re
from typing import Any, Tuple

__version__ = "1.3.3"
__version__ = "1.3.4"

version = __version__

Expand Down
2 changes: 1 addition & 1 deletion orbiter/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def run_ruff_formatter(output_dir: Path):
logger.debug("Unable to acquire list of changed files in output directory, reformatting output directory...")

output = run(
f"ruff check --select E,F,UP,B,SIM,I --ignore E501 --fix {changed_files}",
f"ruff check --select E,F,UP,B,SIM,I --ignore E501,SIM117,SIM101 --fix {changed_files}",
shell=True,
text=True,
capture_output=True,
Expand Down

0 comments on commit 787aba2

Please sign in to comment.