Files
emacs/lisp/yasnippet-snippets/snippets/python-mode/classmethod
2020-12-05 21:29:49 +01:00

8 lines
127 B
Plaintext

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