Skip to content

Commit

Permalink
Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahsawyers committed Dec 6, 2019
1 parent d263cf9 commit 5b23a59
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions autostack/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
import click

from autostack.cli.capture import capture
from autostack.cli.config import config
# from autostack.cli.config import config
from autostack.cli.display import display
from autostack.cli.error import error
from autostack.cli.init import init
# from autostack.cli.error import error
# from autostack.cli.init import init


@click.group()
Expand All @@ -21,7 +21,7 @@ def cli():


cli.add_command(capture)
cli.add_command(config)
# cli.add_command(config)
cli.add_command(display)
cli.add_command(error)
cli.add_command(init)
# cli.add_command(error)
# cli.add_command(init)

0 comments on commit 5b23a59

Please sign in to comment.