summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Gohad <tushar.gohad@intel.com>2015-07-28 00:11:15 -0700
committerTushar Gohad <tushar.gohad@intel.com>2015-07-28 00:11:15 -0700
commite3159f3ae0189d4a7c5a4b9ad46c0603fe239e08 (patch)
treee57439b3fc3cebd5c189fcee59656ed4baf873b7
parent7be5f2fa7ec403a8f98d7ab43b145eb73b0ce78c (diff)
downloadpyeclib-e3159f3ae0189d4a7c5a4b9ad46c0603fe239e08.tar.gz
More PEP8 fixes
-rw-r--r--pyeclib/enum.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyeclib/enum.py b/pyeclib/enum.py
index 625dea9..d0c858d 100644
--- a/pyeclib/enum.py
+++ b/pyeclib/enum.py
@@ -666,8 +666,8 @@ del __str__
def __dir__(self):
added_behavior = [m for m in self.__class__.__dict__ if m[0] != '_']
- return (['__class__', '__doc__', '__module__', 'name', 'value']
- + added_behavior)
+ return (['__class__', '__doc__', '__module__', 'name', 'value'] +
+ added_behavior)
temp_enum_dict['__dir__'] = __dir__
del __dir__