Skip to content

Add the `trajectory` kwarg to the list of `self` parameters in the `Dynamics` class

Andrew Rosen requested to merge (removed):optkwargs into master

In the base Dynamics class, the user can supply the trajectory kwarg, but it is never assigned to self. This means that it can be difficult to access what the user-specified trajectory file was if all you have is the Dynamics object. This MR assigns the missing self.trajectory = trajectory in the __init__.

Merge request reports