summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--snippets/python-mode/class8
1 files changed, 8 insertions, 0 deletions
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):