Fix linting

This commit is contained in:
zeFresk 2024-10-05 19:20:16 +02:00
commit e1ae4428c3

View file

@ -4,7 +4,7 @@ from manim.mobject.graphing.probability import BarChart
def test_values_close_to_zero():
"""Checks that BarChart supports values/heights close to zero without crashing if ."""
values = [1 / 10000 for _ in range(8)]
names = [i for i in range(len(values))]
names = list(range(len(values)))
chart = BarChart(
values=values,
bar_names=["one", "two", "three", "four", "five"],