You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
Perhaps defining traj_dict["setup_points"] = {} earlier in the code, or deleting traj_dict["setup_points"] if it's value is None, would avoid this problem.
The text was updated successfully, but these errors were encountered:
For some reason
traj_dict["setup_points"]
can beNone
, so that the first if-clause passes but the second raises an error.trajectorytools/trajectorytools/trajectories.py
Line 47 in 7640b6e
Perhaps defining
traj_dict["setup_points"] = {}
earlier in the code, or deletingtraj_dict["setup_points"]
if it's value isNone
, would avoid this problem.The text was updated successfully, but these errors were encountered: