Fix PEP 257 error

Fix the PEP257 error with __all__ defined as a list

Change-Id: I27f73512c0f6b79cffa0648e461d8c1aa2c39e6a
This commit is contained in:
Morgan Fainberg 2015-11-27 14:47:26 -05:00
parent 5a7a784bd4
commit a6a8d44b02
1 changed files with 2 additions and 2 deletions

View File

@ -14,11 +14,11 @@ from keystoneauth1 import exceptions
from keystoneauth1.loading import base
from keystoneauth1.loading import opts
__all__ = ['BaseIdentityLoader',
__all__ = ('BaseIdentityLoader',
'BaseV2Loader',
'BaseV3Loader',
'BaseFederationLoader',
'BaseGenericLoader']
'BaseGenericLoader')
class BaseIdentityLoader(base.BaseLoader):