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