Merge "Change __all__ list to tuple"

This commit is contained in:
Zuul 2018-11-09 03:47:00 +00:00 committed by Gerrit Code Review
commit 9775419f8e
2 changed files with 4 additions and 4 deletions

View File

@ -15,6 +15,6 @@
from keystone.receipt import provider
__all__ = [
__all__ = (
"provider",
]
)

View File

@ -15,6 +15,6 @@
from keystone.receipt.providers.fernet.core import Provider
__all__ = [
__all__ = (
"Provider",
]
)