Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deprecation #380

Merged
merged 2 commits into from
Feb 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cflib/crazyflie/mem/trajectory_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,12 +169,12 @@ def __init__(self, id, type, size, mem_handler):
# elements in the same trajectory.
self.trajectory = []

# Deprecated. replaced by self.trajectory
# Deprecated (removed after August 2023). replaced by self.trajectory
@property
def poly4Ds(self):
return self.trajectory

# Deprecated. replaced by self.trajectory
# Deprecated (removed after August 2023). replaced by self.trajectory
@poly4Ds.setter
def poly4Ds(self, trajectory):
self.trajectory = trajectory
Expand Down