yasnippet-snippets/snippets/python-mode/classmethod
2017-08-13 12:16:55 +01:00

8 lines
127 B
Plaintext

# -*- mode: snippet -*-
# name: classmethod
# key: cm
# group: object oriented
# --
@classmethod
def ${1:meth}(cls, $2):
$0