Skip to content
This repository has been archived by the owner on Sep 7, 2022. It is now read-only.

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mali-git committed Feb 4, 2019
1 parent 5ae1679 commit 29f8123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/biokeen/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
)


@click.group(cls=DefaultGroup, default='train', default_if_no_args=True)
@click.group(cls=DefaultGroup, default_if_no_args=False)
@click.version_option()
def main(): # noqa: D401
"""A command line interface for BioKEEN."""
Expand All @@ -41,7 +41,7 @@ def main(): # noqa: D401
@connection_option
@click.option('-f', '--config', type=click.File())
@click.option('-r', '--rebuild', is_flag=True)
def train(config: Optional[TextIO], connection: str, rebuild: bool):
def start(config: Optional[TextIO], connection: str, rebuild: bool):
"""Start the BioKEEN training pipeline."""
import pykeen

Expand Down

0 comments on commit 29f8123

Please sign in to comment.