Fix Pylint: E1121(too-many-function-args)
This commit is contained in:
@@ -39,5 +39,5 @@ class LazyModule(object):
|
||||
submod = getattr(mod, name)
|
||||
except ImportError:
|
||||
raise AttributeError("'module' object has no attribute %r" % name)
|
||||
self.__dict__[name] = LazyModule(subname, submod)
|
||||
self.__dict__[name] = LazyModule(subname)
|
||||
return self.__dict__[name]
|
||||
|
||||
Reference in New Issue
Block a user