Replaced infinity symbol with 'inf'
This commit is contained in:
parent
4735a6c49a
commit
3920a93cba
|
@ -55,7 +55,7 @@ def format_time(time):
|
|||
|
||||
def format_float(x):
|
||||
if x < 0:
|
||||
return "∞"
|
||||
return "inf"
|
||||
else:
|
||||
return "%.3f"%x
|
||||
|
||||
|
|
Loading…
Reference in New Issue