Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d1d043 commit 9ad1dc2Copy full SHA for 9ad1dc2
lib/matplotlib/tests/test_mlab.py
@@ -374,7 +374,7 @@ def test_csv2rec_dayfirst(self):
374
datetime.datetime(2054, 6, 20, 14, 31, 45),
375
datetime.datetime(2000, 10, 31, 11, 50, 23)]
376
self.fd.seek(0)
377
- array = mlab.csv2rec(self.fd, names='a', dayfirst = True)
+ array = mlab.csv2rec(self.fd, names='a', dayfirst=True)
378
assert_array_equal(array['a'].tolist(), expected)
379
380
def test_csv2rec_yearfirst(self):
@@ -389,7 +389,7 @@ def test_csv2rec_yearfirst(self):
389
390
391
392
- array = mlab.csv2rec(self.fd, names='a', yearfirst = True)
+ array = mlab.csv2rec(self.fd, names='a', yearfirst=True)
393
394
395
class window_testcase(CleanupTestCase):
0 commit comments