diff options
author | Valentin Haenel <valentin@haenel.co> | 2014-12-27 01:38:11 +0100 |
---|---|---|
committer | Valentin Haenel <valentin@haenel.co> | 2014-12-27 01:38:11 +0100 |
commit | 33bacd5114e1b22f9ff50670342385dbf04050e6 (patch) | |
tree | 762272d2e85138f4db421e922dbed7874067859f /numpy/lib/npyio.py | |
parent | 901f88bd3c20b35476e8d4a781bf8bd74547fb2a (diff) | |
download | numpy-33bacd5114e1b22f9ff50670342385dbf04050e6.tar.gz |
remove trailing whitespace
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 4 |
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() |