summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
authorValentin Haenel <valentin@haenel.co>2014-12-27 01:38:11 +0100
committerValentin Haenel <valentin@haenel.co>2014-12-27 01:38:11 +0100
commit33bacd5114e1b22f9ff50670342385dbf04050e6 (patch)
tree762272d2e85138f4db421e922dbed7874067859f /numpy/lib/npyio.py
parent901f88bd3c20b35476e8d4a781bf8bd74547fb2a (diff)
downloadnumpy-33bacd5114e1b22f9ff50670342385dbf04050e6.tar.gz
remove trailing whitespace
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r--numpy/lib/npyio.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py
index de6214c02..63b7e8df7 100644
--- a/numpy/lib/npyio.py
+++ b/numpy/lib/npyio.py
@@ -122,11 +122,11 @@ class BagObj(object):
return object.__getattribute__(self, '_obj')[key]
except KeyError:
raise AttributeError(key)
-
+
def __dir__(self):
"""
Enables dir(bagobj) to list the files in an NpzFile.
-
+
This also enables tab-completion in an interpreter or IPython.
"""
return object.__getattribute__(self, '_obj').keys()