File tree Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Expand file tree Collapse file tree 1 file changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -1216,19 +1216,20 @@ class EngFormatter(Formatter):
1216
1216
}
1217
1217
1218
1218
def __init__ (self , unit = "" , places = None , space_sep = True ):
1219
- """ Parameters
1220
- ----------
1221
- unit: str (default: u"")
1222
- Unit symbol to use.
1223
-
1224
- places: int (default: None)
1225
- Precision, i.e. number of digits after the decimal point.
1226
- If it is None, falls back to the floating point format '%g'.
1227
-
1228
- space_sep: boolean (default: True)
1229
- If True, a (single) space is used between the value and the
1230
- prefix/unit, else the prefix/unit is directly appended to the
1231
- value.
1219
+ """
1220
+ Parameters
1221
+ ----------
1222
+ unit: str (default: u"")
1223
+ Unit symbol to use.
1224
+
1225
+ places: int (default: None)
1226
+ Precision, i.e. number of digits after the decimal point.
1227
+ If it is None, falls back to the floating point format '%g'.
1228
+
1229
+ space_sep: boolean (default: True)
1230
+ If True, a (single) space is used between the value and the
1231
+ prefix/unit, else the prefix/unit is directly appended to the
1232
+ value.
1232
1233
"""
1233
1234
self .unit = unit
1234
1235
self .places = places
You can’t perform that action at this time.
0 commit comments