mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 11:13:04 +03:00
12 lines
202 B
Text
12 lines
202 B
Text
snippet qinit "def __init__(self, parent=None)"
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
$0
|
|
|
|
endsnippet
|
|
|
|
|
|
snippet forl "[action for item in iterable]"
|
|
[$1 for $2 in $3]
|
|
$0
|
|
endsnippet
|