Skip to content

Commit 45114f8

Browse files
committed
Fix physics/n_body_simulation.py
1 parent 75aab91 commit 45114f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

physics/n_body_simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def plot(
240240
ax.add_patch(patch)
241241

242242
# Function called at each step of the animation
243-
def update(frame: int) -> list[plt.Circle]:
243+
def update(frame: int) -> list[plt.Circle]: # noqa: ARG001
244244
update_step(body_system, DELTA_TIME, patches)
245245
return patches
246246

0 commit comments

Comments
 (0)