summaryrefslogtreecommitdiff
path: root/keystoneclient/v2_0
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2015-10-01 16:56:33 +0000
committerDolph Mathews <dolph.mathews@gmail.com>2015-10-01 18:18:13 +0000
commiteb77abd77a25baa556de4df527404b907748d3c6 (patch)
tree3dc4977cc9ca7db44e1f3259948c76e8559264eb /keystoneclient/v2_0
parenteb1dbe8e5a20700a64de50f1d85a972a00c23319 (diff)
downloadpython-keystoneclient-eb77abd77a25baa556de4df527404b907748d3c6.tar.gz
Make __all__ immutable
Using a mutable type implies that it's acceptable for the set of publicly-accessible attributes to be mutated at runtime, which defeats their intended purpose of documenting the public interface. Tuples are immutable. Change-Id: Ib3ab93224ba240040b08ece481ef5ba620c3f658
Diffstat (limited to 'keystoneclient/v2_0')
-rw-r--r--keystoneclient/v2_0/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/v2_0/__init__.py b/keystoneclient/v2_0/__init__.py
index 30407e0..23382fe 100644
--- a/keystoneclient/v2_0/__init__.py
+++ b/keystoneclient/v2_0/__init__.py
@@ -1,6 +1,6 @@
from keystoneclient.v2_0.client import Client # noqa
-__all__ = [
+__all__ = (
'client',
-]
+)