Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 11, 2023
1 parent e6a7660 commit cd27381
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/module/mobject/graphing/test_ticks.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from __future__ import annotations

import numpy as np
import math

import numpy as np

from manim import PI, Axes, NumberLine


Expand All @@ -24,7 +25,7 @@ def test_elongated_ticks_float_equality():
include_ticks=True,
)

tick_heights = set(tick.height for tick in nline.ticks)
tick_heights = {tick.height for tick in nline.ticks}
default_tick_height, elongated_tick_height = min(tick_heights), max(tick_heights)

assert all(
Expand Down

0 comments on commit cd27381

Please sign in to comment.