Skip to content

Commit

Permalink
fix(pre_commit): 🎨 auto format pre-commit hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Aug 15, 2024
1 parent 35ee6e2 commit 87ce48d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions roboflow/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,14 @@ def add_deployment_parser(subparsers):
"-m", dest="machine_type", help="machine type, run `roboflow deployment machine_type` to see available options"
)
deployment_add_parser.add_argument(
"-t", dest="duration", help="duration, how long you want to keep the deployment (unit: hour, default: 3)",
type=float, default=3
"-t",
dest="duration",
help="duration, how long you want to keep the deployment (unit: hour, default: 3)",
type=float,
default=3,
)
deployment_add_parser.add_argument(
"-e", dest="delete_on_expiration", help="delete when expired (default: True)",
type=bool, default=True
"-e", dest="delete_on_expiration", help="delete when expired (default: True)", type=bool, default=True
)
deployment_add_parser.add_argument(
"-n", dest="deployment_name", help="deployment name, must contain 3-10 lowercase characters"
Expand Down

0 comments on commit 87ce48d

Please sign in to comment.