File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -233,8 +233,8 @@ def test__EventCollection__switch_orientation():
233
233
splt .set_xlim (0 , 2 )
234
234
235
235
236
- @image_comparison (baseline_images =
237
- ['EventCollection_plot__switch_orientation__2x' ])
236
+ @image_comparison (
237
+ baseline_images = ['EventCollection_plot__switch_orientation__2x' ])
238
238
def test__EventCollection__switch_orientation_2x ():
239
239
'''
240
240
check to make sure calling switch_orientation twice sets the
Original file line number Diff line number Diff line change @@ -792,6 +792,10 @@ class EngFormatter(Formatter):
792
792
plus a specified unit, e.g., 10 MHz instead of 1e7.
793
793
"""
794
794
795
+ # the unicode for -6 is the greek letter mu
796
+ # commeted here due to bug in pep8
797
+ # (https://github.com/jcrocholl/pep8/issues/271)
798
+
795
799
# The SI engineering prefixes
796
800
ENG_PREFIXES = {
797
801
- 24 : "y" ,
@@ -800,7 +804,7 @@ class EngFormatter(Formatter):
800
804
- 15 : "f" ,
801
805
- 12 : "p" ,
802
806
- 9 : "n" ,
803
- - 6 : "\u03bc " , # Greek letter mu
807
+ - 6 : "\u03bc " ,
804
808
- 3 : "m" ,
805
809
0 : "" ,
806
810
3 : "k" ,
You can’t perform that action at this time.
0 commit comments