Skip to content

Commit 8221d49

Browse files
committed
update formatters examples [ci skip]
1 parent bbbdbe4 commit 8221d49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

probscale/formatters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ def _sig_figs(cls, x, n, expthresh=5, forceint=False):
2929
3030
Examples
3131
--------
32-
>>> print(_sig_figs(1247.15, 3))
32+
>>> _sig_figs(1247.15, 3)
3333
'1250'
34-
>>> print(_sig_figs(1247.15, 7))
34+
>>> _sig_figs(1247.15, 7)
3535
'1247.150'
3636
3737
"""

0 commit comments

Comments
 (0)