Skip to content

Commit

Permalink
🏷️(pyright): ignore ozi-core for now
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jul 10, 2024
1 parent d362cfb commit f900b16
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions ozi/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
import sys # pragma: no cover
from dataclasses import fields # pragma: no cover

from ozi_core.actions import ExactMatch # pragma: no cover
from ozi_core.actions import check_version # pragma: no cover
from ozi_core.actions import info # pragma: no cover
from ozi_core.actions import license_expression # pragma: no cover
from ozi_core.actions import list_available # pragma: no cover
from ozi_core.actions import print_version # pragma: no cover
from ozi_core.actions import ExactMatch # pragma: no cover # pyright: ignore
from ozi_core.actions import check_version # pragma: no cover # pyright: ignore
from ozi_core.actions import info # pragma: no cover # pyright: ignore
from ozi_core.actions import license_expression # pragma: no cover # pyright: ignore
from ozi_core.actions import list_available # pragma: no cover # pyright: ignore
from ozi_core.actions import print_version # pragma: no cover # pyright: ignore

from ozi.fix.__main__ import main as fix_main # pragma: no cover
from ozi.new.__main__ import main as new_main # pragma: no cover
Expand Down
6 changes: 3 additions & 3 deletions ozi/fix/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
from pathlib import Path
from typing import NoReturn

from ozi_core.fix.missing import report
from ozi_core.fix.parser import parser
from ozi_core.fix.rewrite_command import Rewriter
from ozi_core.fix.missing import report # pyright: ignore
from ozi_core.fix.parser import parser # pyright: ignore
from ozi_core.fix.rewrite_command import Rewriter # pyright: ignore
from ozi_spec import METADATA # pyright: ignore
from ozi_templates import load_environment # type: ignore
from ozi_templates.filter import underscorify # type: ignore
Expand Down
10 changes: 5 additions & 5 deletions ozi/new/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
from itertools import chain
from typing import TYPE_CHECKING

from ozi_core.new.interactive import interactive_prompt
from ozi_core.new.parser import parser
from ozi_core.new.validate import postprocess_arguments
from ozi_core.new.validate import preprocess_arguments
from ozi_core.render import RenderedContent
from ozi_core.new.interactive import interactive_prompt # pyright: ignore
from ozi_core.new.parser import parser # pyright: ignore
from ozi_core.new.validate import postprocess_arguments # pyright: ignore
from ozi_core.new.validate import preprocess_arguments # pyright: ignore
from ozi_core.render import RenderedContent # pyright: ignore
from ozi_spec import METADATA # pyright: ignore
from ozi_templates import load_environment # type: ignore
from tap_producer import TAP
Expand Down

0 comments on commit f900b16

Please sign in to comment.