Commit 79f9d1a7 by stv

Fix Pylint: E1121(too-many-function-args)

parent e7e9a163
......@@ -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]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment