From 25d884ec5ae81215f059c998ed83cef10bfd0c84 Mon Sep 17 00:00:00 2001 From: sebastieng7 <58365877+sebastieng7@users.noreply.github.com> Date: Sun, 23 Feb 2025 19:00:50 +0100 Subject: [PATCH] Update control_flow.json tryEF typo Solving typo from issue #30 --- snippets/control_flow.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/control_flow.json b/snippets/control_flow.json index 795dbcc..8ceb600 100644 --- a/snippets/control_flow.json +++ b/snippets/control_flow.json @@ -61,7 +61,7 @@ }, "try:except:else:finally": { "prefix": "TryEF.try-e-f", - "body": "try:\n\t# comment: $1\nexcept${2:${3:Exception} as ${4:e}}:\n\t${5:raise}\nelse:\n\t# comment: $6\nfinally:\n\t# comment: $0\n# end try", + "body": "try:\n\t# comment: $1\nexcept ${2:${3:Exception} as ${4:e}}:\n\t${5:raise}\nelse:\n\t# comment: $6\nfinally:\n\t# comment: $0\n# end try", "description": "Code Snippet for a try/except/finally with else statement." }, "try:except:finally": {