sanketsaurav / lore

__init__ method from the base class not called PYL-W0231
Bug risk
Major
4 years ago5 years old
__init__ method from base class 'Base' is not called
336
337
338class Distance(Base):
339    def __init__(self, lat_a, lon_a, lat_b, lon_b, input='degrees'):340        self.column = [lat_a, lon_a, lat_b, lon_b]
341        self.name = ('_').join([
342            inflection.underscore(self.__class__.__name__),