mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
Fix linting
This commit is contained in:
parent
9fcfe39707
commit
e1ae4428c3
1 changed files with 1 additions and 1 deletions
|
|
@ -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"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue