We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
try
1 parent 8bb7a14 commit b7540c3Copy full SHA for b7540c3
snippets/python.snippets
@@ -115,21 +115,21 @@ snippet try Try/Except
115
${1:${VISUAL}}
116
except ${2:Exception} as ${3:e}:
117
${0:raise $3}
118
-snippet try Try/Except/Else
+snippet trye Try/Except/Else
119
try:
120
121
122
${4:raise $3}
123
else:
124
${0}
125
-snippet try Try/Except/Finally
+snippet tryf Try/Except/Finally
126
127
128
129
130
finally:
131
132
-snippet try Try/Except/Else/Finally
+snippet tryef Try/Except/Else/Finally
133
134
135
0 commit comments