We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6398f59 commit c3f01c8Copy full SHA for c3f01c8
manim/mobject/graphing/number_line.py
@@ -352,10 +352,10 @@ def get_tick_range(self) -> np.ndarray:
352
"""
353
x_min, x_max, x_step = self.x_range
354
if not self.include_tip and not self.include_double_sided_tip:
355
- x_max += min(1e-6, x_step/2)
+ x_max += min(1e-6, x_step / 2)
356
357
if not self.include_double_sided_tip:
358
- x_min -= min(1e-6, x_step/2)
+ x_min -= min(1e-6, x_step / 2)
359
360
# Handle cases where min and max are both positive or both negative
361
if x_min < x_max < 0 or x_max > x_min > 0:
0 commit comments