Skip to content

Commit

Permalink
chore: fix CI failing due to Ruff 0.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
paduszyk committed Aug 9, 2024
1 parent 37512ac commit e0774ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/format_nox_sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def get_session_call_spec_value_formatter(name: str) -> Callable[[str], str]:

def format_nox_sessions(tag: str) -> str:
sessions = json.loads(
subprocess.check_output(
f"{sys.executable} -m nox --tag {tag} --list-sessions --json".split(), # noqa: S603
subprocess.check_output( # noqa: S603
f"{sys.executable} -m nox --tag {tag} --list-sessions --json".split(),
),
)

Expand Down

0 comments on commit e0774ec

Please sign in to comment.