summaryrefslogtreecommitdiff
path: root/snippets/python-mode/class
blob: 88399530cdb8366472a27b5243a09ddc32545f1d (plain)
1
2
3
4
5
6
7
8
# -*- mode: snippet -*-
# key: cl
# --
class ${1:name}(object):
    """
    """

    def __init__(self, $0):