
pyflakes itself can't be used in any automated gating way, because there are two sets of false errors it raises. However, as an exercise, cleaning up the 'valid' ones uncovered three actual bugs. The other changes (mostly unused variables) are included here for fun. Command run: pyflakes swift | grep -v "undefined name '_'" Change-Id: I18696bf047dedad1a9fdbde3463e214fba95f7c6
12 lines
346 B
Python
12 lines
346 B
Python
from swift.proxy.controllers.base import Controller
|
|
from swift.proxy.controllers.obj import ObjectController
|
|
from swift.proxy.controllers.account import AccountController
|
|
from swift.proxy.controllers.container import ContainerController
|
|
|
|
__all__ = [
|
|
'AccountController',
|
|
'ContainerController',
|
|
'Controller',
|
|
'ObjectController',
|
|
]
|