Pylint Warning Supression Removed

This commit is contained in:
usama sadiq
2019-06-26 13:01:39 +05:00
parent 23b2039c87
commit 7a5f0b7d24
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
"""
Module for generating certificate for a user
"""
from __future__ import absolute_import
from celery import task

View File

@@ -223,7 +223,7 @@ class LazySequence(Sequence):
It is immutable, and accepts an estimated length in order to support __len__
without exhausting the underlying sequence
"""
def __init__(self, iterable, est_len=None): # pylint: disable=super-init-not-called
def __init__(self, iterable, est_len=None):
self.iterable = iterable
self.est_len = est_len
self._data = []