Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicasyu committed Sep 12, 2024
1 parent 409ffde commit d9b1ebd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/arcade_collection/convert/convert_to_simularium_shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def format_patch_for_shapes(
Data formatted for trajectory.
"""

data: list[list[int | str | float]] = []
data: list[list[int | str | float | list]] = []

for frame in frames:
if cells_tar is not None:
Expand Down Expand Up @@ -183,7 +183,7 @@ def format_patch_for_shapes(
to_node[2],
]

data = [*data, [name, frame, radius, 0, 0, 0, *subpoints, "FIBER"]]
data = [*data, [name, frame, radius, 0, 0, 0, subpoints, "FIBER"]]

return pd.DataFrame(
data, columns=["name", "frame", "radius", "x", "y", "z", "points", "display"]
Expand Down

0 comments on commit d9b1ebd

Please sign in to comment.