Skip to content

Commit

Permalink
fix: remove unnecessary args
Browse files Browse the repository at this point in the history
  • Loading branch information
tikazyq committed Apr 16, 2024
1 parent 97dd678 commit 94492fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions crawlab_ai/cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

def setup_config_parser(subparsers):
config_parser = subparsers.add_parser("config", help="Configure crawlab")
config_parser.add_argument(
"-u", "--url", help="Crawlab API URL", default="http://localhost:8000"
)
# config_parser.add_argument(
# "-u", "--url", help="Crawlab API URL", default="http://localhost:8000"
# )
config_parser.add_argument("-t", "--token", help="Crawlab API token")
config_parser.set_defaults(func=config)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="crawlab-ai",
version="0.0.6",
version="0.0.7",
packages=find_packages(),
url="https://github.com/crawlab-team/crawlab-ai-sdk",
license="MIT",
Expand Down

0 comments on commit 94492fb

Please sign in to comment.