Skip to content

Commit f5756ce

Browse files
author
KrishnaSai2020
committed
doctest fix for pandas-dev#42670
1 parent 314aee5 commit f5756ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/formats/format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1956,7 +1956,7 @@ def __call__(self, num: int | float) -> str:
19561956
"""
19571957
Formats a number in engineering notation, appending a letter
19581958
representing the power of 10 of the original number. Some examples:
1959-
>>> format_eng = EngFormatter(0)
1959+
>>> format_eng = EngFormatter(0, False)
19601960
>>> format_eng(0)
19611961
' 0'
19621962
>>> format_eng = EngFormatter(1, True )

0 commit comments

Comments
 (0)