Skip to content

Commit b7540c3

Browse files
Fabian Hinzlpil
authored andcommitted
Rename identically named try snippets in python.snippets
1 parent 8bb7a14 commit b7540c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

snippets/python.snippets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,21 +115,21 @@ snippet try Try/Except
115115
${1:${VISUAL}}
116116
except ${2:Exception} as ${3:e}:
117117
${0:raise $3}
118-
snippet try Try/Except/Else
118+
snippet trye Try/Except/Else
119119
try:
120120
${1:${VISUAL}}
121121
except ${2:Exception} as ${3:e}:
122122
${4:raise $3}
123123
else:
124124
${0}
125-
snippet try Try/Except/Finally
125+
snippet tryf Try/Except/Finally
126126
try:
127127
${1:${VISUAL}}
128128
except ${2:Exception} as ${3:e}:
129129
${4:raise $3}
130130
finally:
131131
${0}
132-
snippet try Try/Except/Else/Finally
132+
snippet tryef Try/Except/Else/Finally
133133
try:
134134
${1:${VISUAL}}
135135
except ${2:Exception} as ${3:e}:

0 commit comments

Comments
 (0)