Skip to content

Commit

Permalink
🚨 fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jun 17, 2024
1 parent ec04350 commit 427e3ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ozi/fix/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
from pathlib import Path
from typing import NoReturn

from ozi_templates import load_environment
from ozi_templates.filter import underscorify # pyright: ignore
from ozi_templates import load_environment # type: ignore
from ozi_templates.filter import underscorify # type: ignore

from ozi.fix.missing import report
from ozi.fix.parser import parser
Expand Down
2 changes: 1 addition & 1 deletion ozi/fix/missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from pathlib import Path
from typing import TYPE_CHECKING

from ozi_templates.filter import underscorify # pyright: ignore
from ozi_templates.filter import underscorify # type: ignore

from ozi.fix.build_definition import walk
from ozi.meson import load_ast
Expand Down
2 changes: 1 addition & 1 deletion ozi/new/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pathlib import Path
from typing import TYPE_CHECKING

from ozi_templates import load_environment
from ozi_templates import load_environment # type: ignore

from ozi.new.parser import parser
from ozi.new.validate import valid_contact_info
Expand Down
2 changes: 1 addition & 1 deletion ozi/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from git import InvalidGitRepositoryError
from git import Repo
from ozi_templates.filter import underscorify # pyright: ignore
from ozi_templates.filter import underscorify # type: ignore

from ozi.spec import METADATA
from ozi.tap import TAP
Expand Down

0 comments on commit 427e3ca

Please sign in to comment.