From bd93783ae1d4d31c2b931cb3e0b3455eb3afe10f Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 16 Feb 2018 08:44:59 -0500 Subject: snippets: python: Add class snippet --- snippets/python-mode/class | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 snippets/python-mode/class (limited to 'snippets/python-mode/class') diff --git a/snippets/python-mode/class b/snippets/python-mode/class new file mode 100644 index 0000000..8839953 --- /dev/null +++ b/snippets/python-mode/class @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +# key: cl +# -- +class ${1:name}(object): + """ + """ + + def __init__(self, $0): -- cgit v1.2.3