mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 13:33:04 +00:00
7 lines
144 B
Plaintext
7 lines
144 B
Plaintext
#name : class ... :
|
|
# --
|
|
class ${1:cname}(${2:object}):
|
|
"docstring for $1"
|
|
def __init__(self, ${3:arg}):
|
|
self.$3 = $3
|
|
$0 |