Skip to content

Commit

Permalink
fix(cli): remove unused import and method
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jul 8, 2023
1 parent da3cbd5 commit 150d9d5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/hyfi/__cli__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from hyfi.__global__ import __about__, __hydra_version_base__
from hyfi.__global__.config import HyfiConfig
from hyfi.copier import Copier
from hyfi.main import HyFI, _about
from hyfi.main import HyFI
from hyfi.utils.logging import LOGGING

logger = LOGGING.getLogger(__name__)
Expand All @@ -23,8 +23,7 @@ def about(**args):
Print the about information for Hyfi.
This is a wrapper around _about which takes a HyfiConfig as an argument
"""
cfg = HyfiConfig(**args)
_about(cfg)
HyfiConfig(**args).print_about()


def run_copy(**args):
Expand Down

0 comments on commit 150d9d5

Please sign in to comment.