Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9ad1dc2

Browse files
committed
more PEP-8 fixes...
removal of spaces around "="
1 parent 3d1d043 commit 9ad1dc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/tests/test_mlab.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def test_csv2rec_dayfirst(self):
374374
datetime.datetime(2054, 6, 20, 14, 31, 45),
375375
datetime.datetime(2000, 10, 31, 11, 50, 23)]
376376
self.fd.seek(0)
377-
array = mlab.csv2rec(self.fd, names='a', dayfirst = True)
377+
array = mlab.csv2rec(self.fd, names='a', dayfirst=True)
378378
assert_array_equal(array['a'].tolist(), expected)
379379

380380
def test_csv2rec_yearfirst(self):
@@ -389,7 +389,7 @@ def test_csv2rec_yearfirst(self):
389389
datetime.datetime(2054, 6, 20, 14, 31, 45),
390390
datetime.datetime(2000, 10, 31, 11, 50, 23)]
391391
self.fd.seek(0)
392-
array = mlab.csv2rec(self.fd, names='a', yearfirst = True)
392+
array = mlab.csv2rec(self.fd, names='a', yearfirst=True)
393393
assert_array_equal(array['a'].tolist(), expected)
394394

395395
class window_testcase(CleanupTestCase):

0 commit comments

Comments
 (0)