Skip to content

Commit

Permalink
merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
PacificDou committed Oct 30, 2024
2 parents a6098c0 + 713bc60 commit e20cc00
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions roboflow/deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ def add_deployment_parser(subparsers):
deployment_log_parser.set_defaults(func=get_deployment_log)
deployment_log_parser.add_argument("-a", "--api_key", help="api key")
deployment_log_parser.add_argument("deployment_name", help="deployment name")
deployment_log_parser.add_argument("-d", "--duration", help="duration of log (from now) in seconds", type=int, default=3600)
deployment_log_parser.add_argument("-n", "--tail", help="number of lines to show from the end of the logs (<= 50)", type=int, default=10)
deployment_log_parser.add_argument(
"-d", "--duration", help="duration of log (from now) in seconds", type=int, default=3600)
deployment_log_parser.add_argument(
"-n", "--tail", help="number of lines to show from the end of the logs (<= 50)", type=int, default=10)
deployment_log_parser.add_argument(
"-f", "--follow", help="follow log output", action="store_true"
)
Expand Down

0 comments on commit e20cc00

Please sign in to comment.