Files
emacs/snippets/python-mode/method_docstring
2024-04-30 07:08:23 +02:00

10 lines
179 B
Plaintext

# -*- mode: snippet -*-
# name: method_docstring
# key: md
# group: object oriented
# --
def ${1:name}(self$2):
\"\"\"$3
${2:$(python-args-to-docstring)}
\"\"\"
$0