Skip to content

Commit

Permalink
Changed parameter name and nargs value as suggested
Browse files Browse the repository at this point in the history
Co-authored-by: Gabriel Gonzalez <[email protected]>
  • Loading branch information
trietend and gabrielg5 authored Dec 6, 2024
1 parent 92933d0 commit bf82368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/mssqlclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
'Authentication (default False)')
parser.add_argument('-debug', action='store_true', help='Turn DEBUG output ON')
parser.add_argument('-show', action='store_true', help='show the queries')
parser.add_argument('-cmd', action='extend', nargs='+', help='Commands to execute in the SQL shell. Multiple commands can be passed.')
parser.add_argument('-command', action='extend', nargs='*', help='Commands to execute in the SQL shell. Multiple commands can be passed.')
parser.add_argument('-file', type=argparse.FileType('r'), help='input file with commands to execute in the SQL shell')

group = parser.add_argument_group('authentication')
Expand Down

0 comments on commit bf82368

Please sign in to comment.