Skip to content

Commit

Permalink
new black ver
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin CO committed Apr 19, 2024
1 parent 20afd66 commit b461eac
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions data_process/force_from_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ def __init__(
muscle_name = (
muscle_name
if isinstance(muscle_name, str)
else muscle_name[i]
if isinstance(muscle_name, list)
else "biceps"
else muscle_name[i] if isinstance(muscle_name, list) else "biceps"
)
dictionary = {"time": self.time, muscle_name: self.all_biceps_force_vector, "stim_time": self.stim_time}
with open(save_pickle_path, "wb") as file:
Expand Down

0 comments on commit b461eac

Please sign in to comment.