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 8ac2ba0 commit 3571921Copy full SHA for 3571921
1 file changed
lib/matplotlib/tests/test_cycles.py
@@ -159,12 +159,11 @@ def test_invalid_input_forms():
159
with assert_raises((TypeError, ValueError)):
160
ax.set_prop_cycle('linewidth', 1)
161
162
- ax.set_prop_cycle('linewidth', {'1':1, '2':2})
+ ax.set_prop_cycle('linewidth', {'1': 1, '2': 2})
163
164
ax.set_prop_cycle(linewidth=1, color='r')
165
166
167
-
168
if __name__ == '__main__':
169
import nose
170
nose.runmodule(argv=['-s', '--with-doctest'], exit=False)
0 commit comments