summaryrefslogtreecommitdiff
path: root/numpy/lib/twodim_base.py
diff options
context:
space:
mode:
authorWarren Weckesser <warren.weckesser@gmail.com>2013-11-02 16:19:08 -0400
committerWarren Weckesser <warren.weckesser@gmail.com>2013-11-02 16:19:08 -0400
commit253cff04bb83e0338755863653267c19856f79d4 (patch)
tree1473069dc98c463777204bc582c2c7551f90401c /numpy/lib/twodim_base.py
parentc5c4d0bdc1a7971f35726421b245f6f3515a2cdf (diff)
downloadnumpy-253cff04bb83e0338755863653267c19856f79d4.tar.gz
MAINT: lib: Use a consistent PEP8-compliant import style in twodim_base.py and tests/test_twodim_base.py. Also make a couple more PEP8 tweaks.
Diffstat (limited to 'numpy/lib/twodim_base.py')
-rw-r--r--numpy/lib/twodim_base.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/lib/twodim_base.py b/numpy/lib/twodim_base.py
index 12e6a3cbd..fe3066377 100644
--- a/numpy/lib/twodim_base.py
+++ b/numpy/lib/twodim_base.py
@@ -9,8 +9,10 @@ __all__ = ['diag', 'diagflat', 'eye', 'fliplr', 'flipud', 'rot90', 'tri',
'triu_indices_from',
]
-from numpy.core.numeric import (asanyarray, subtract, arange, zeros,
- greater_equal, multiply, ones, asarray, where)
+from numpy.core.numeric import (
+ asanyarray, subtract, arange, zeros, greater_equal, multiply, ones,
+ asarray, where,
+ )
def fliplr(m):