emacs.d/etc/yasnippet/snippets/python-mode/def_method

10 lines
178 B
Plaintext
Raw Normal View History

2022-12-27 10:45:55 +01:00
# -*- coding: utf-8 -*-
# Uses .yas-setup.el.
# name : def method
# key : defm
# --
def ${1:name}(self$2):
"""${3:XXX.}${2:$(python-arguments-to-doc-string)}"""
$0pass