Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions snippets/python.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,15 +200,15 @@
"async def ${1:funcname}(${2:parameter_list}):",
"\t${3:pass}"
],
"description": "Code snippet for a async statement"
"description": "Code snippet for an async statement"
},
"async/for": {
"prefix": "async/for",
"body": [
"async for ${1:target} in ${2:iter}:",
"\t${3:block}"
],
"description": "Code snippet for a async for statement"
"description": "Code snippet for an async for statement"
},
"async/for/else": {
"prefix": "async/for/else",
Expand All @@ -218,15 +218,15 @@
"else:",
"\t${4:block}"
],
"description": "Code snippet for a async for statement with else"
"description": "Code snippet for an async for statement with else"
},
"async/with": {
"prefix": "async/with",
"body": [
"async with ${1:expr} as ${2:var}:",
"\t${3:block}"
],
"description": "Code snippet for a async with statement"
"description": "Code snippet for an async with statement"
},
"ipdb": {
"prefix": "ipdb",
Expand Down