Skip to content

Commit

Permalink
fix(corprep): streamline main function and import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Jul 23, 2023
1 parent c2e0344 commit 11533a2
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/corprep/__cli__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
"""Command line interface for corprep"""

# Importing the libraries
import sys

from hyfi import about, hydra_main
from hyfi import hyfi_main


def main() -> None:
"""Main function for the CLI"""
sys.argv.append(f"--config-path={about.config_path}")
hydra_main()
hyfi_main()


if __name__ == "__main__":
Expand Down

0 comments on commit 11533a2

Please sign in to comment.