Skip to content

Commit

Permalink
Fix Ruff lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthagen committed Oct 28, 2024
1 parent 8f23688 commit c3a4db8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from pathlib import Path
from tempfile import NamedTemporaryFile
from typing import List

import nox
from nox import parametrize
Expand Down Expand Up @@ -42,7 +41,7 @@ def fmt(s: Session) -> None:
["ruff", "format", "--check", "."],
],
)
def lint(s: Session, command: List[str]) -> None:
def lint(s: Session, command: list[str]) -> None:
s.run(*command)


Expand Down

0 comments on commit c3a4db8

Please sign in to comment.