Skip to content

Commit a4b28d4

Browse files
DumbMicelpil
authored andcommitted
Fix: correct addnarg in snippets/python.snippets
1 parent 2a28fc3 commit a4b28d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/python.snippets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ snippet addsp
241241
snippet addarg
242242
parser.add_argument("${0:short_arg}", "${1:long_arg}", default=${2:None}, help="${3:Help text}")
243243
snippet addnarg
244-
parser.add_argument("${0:arg}", nargs="${1:*}", default"${2:None}, help="${3:Help text}")
244+
parser.add_argument("${0:arg}", nargs="${1:*}", default=${2:None}, help="${3:Help text}")
245245
snippet addaarg
246246
parser.add_argument("${0:arg}", "${1:long_arg}", action="${2:store_true}", default=${3:False}, help="${4:Help text}")
247247
snippet pargs

0 commit comments

Comments
 (0)