Skip to content

Commit d12ae2a

Browse files
committed
bump
1 parent f8b87b0 commit d12ae2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ultraplot/ticker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def _fix_small_number(self, x, string, precision_offset=2):
487487
if hasattr(self, "_orderOfMagnitude")
488488
else getattr(self, "orderOfMagnitude", 0)
489489
)
490-
x /= 10 ** order
490+
x /= 10**order
491491
precision_true = max(0, self._decimal_place(x))
492492
precision_max = max(0, np.finfo(type(x)).precision - precision_offset)
493493
precision = min(precision_true, precision_max)

0 commit comments

Comments
 (0)