Skip to content

Commit 80f2600

Browse files
committed
Patched flake8 slip-ups
1 parent ba597de commit 80f2600

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

examples/scales/asinh_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
a \\rightarrow a + {\\cal O}(a^3)
1919
20-
but for larger values (i.e. :math:`|a| \gg a_0`, this is asymptotically
20+
but for larger values (i.e. :math:`|a| \\gg a_0`, this is asymptotically
2121
2222
.. math::
2323

lib/matplotlib/scale.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ def set_default_locators_and_formatters(self, axis):
533533
major_formatter='{x:.3g}',
534534
minor_formatter=NullFormatter())
535535

536+
536537
class LogitTransform(Transform):
537538
input_dims = output_dims = 1
538539

lib/matplotlib/tests/test_ticker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ def test_near_zero(self):
489489
"""Check that manually injected zero will supersede nearby tick"""
490490
lctr = mticker.AsinhLocator(linear_width=100, numticks=3)
491491

492-
assert_almost_equal(lctr.tick_values(-1.1, 0.9), [ -1.0, 0.0, 0.9])
492+
assert_almost_equal(lctr.tick_values(-1.1, 0.9), [-1.0, 0.0, 0.9])
493493

494494
def test_fallback(self):
495495
lctr = mticker.AsinhLocator(1.0, numticks=11)

0 commit comments

Comments
 (0)