Hi there
I use ananconda for auto-completion (open to any other solution) and, currently, when I start coding a class the completion/pattern suggestion is
class ClassName(object):
"""docstring for ClassName"""
def __init__(self, arg):
super(ClassName, self).__init__()
self.arg = arg
I would like to know what do I have to set up for this to be:
class ClassName:
def __init__(self, arg):
"""docstring for init"""
self.arg = arg
Thanks in advance!
Javier