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

This commit is contained in:
stv
2015-02-16 06:57:28 -08:00
parent e7e9a16379
commit 79f9d1a70f

View File

@@ -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]