Skip to content

Commit

Permalink
🚨: run isort
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 9b02455 commit 39cca58
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions ozi/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
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.fix.__main__ import main as fix_main # pragma: no cover
from ozi.new.__main__ import main as new_main # pragma: no cover

Expand Down
7 changes: 3 additions & 4 deletions ozi/fix/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@
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_spec import METADATA # pyright: ignore
from ozi_templates import load_environment # type: ignore
from ozi_templates.filter import underscorify # type: ignore
from tap_producer import TAP

from ozi_core.fix.missing import report
from ozi_core.fix.parser import parser
from ozi_core.fix.rewrite_command import Rewriter


def main() -> NoReturn: # pragma: no cover
"""Main ozi.fix entrypoint."""
Expand Down
7 changes: 3 additions & 4 deletions ozi/new/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@
from itertools import chain
from typing import TYPE_CHECKING

from ozi_spec import METADATA # pyright: ignore
from ozi_templates import load_environment # type: ignore
from tap_producer import TAP

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_spec import METADATA # pyright: ignore
from ozi_templates import load_environment # type: ignore
from tap_producer import TAP

if TYPE_CHECKING:
from argparse import Namespace
Expand Down

0 comments on commit 39cca58

Please sign in to comment.