Skip to content

Commit

Permalink
Added missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 9, 2024
1 parent 49001a4 commit 35515e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exasol/python_extension_common/cli/std_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ def __init__(self, tags: StdTags, value):
StdParams.upload_container: {'type': bool, 'default': True},
StdParams.alter_system: {'type': bool, 'default': True},
StdParams.allow_override: {'type': bool, 'default': False},
StdParams.wait_for_completion: {'type': bool, 'default': True}
StdParams.extract_timeout_minutes: {'type': int, 'default': 10}
StdParams.display_progress: {'type': bool, 'default': True}
StdParams.wait_for_completion: {'type': bool, 'default': True},
StdParams.extract_timeout_minutes: {'type': int, 'default': 10},
StdParams.display_progress: {'type': bool, 'default': True},
}


Expand Down

0 comments on commit 35515e6

Please sign in to comment.