Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
knmcguire committed Nov 27, 2024
1 parent 860406a commit f7aba61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crazyflie_sim/crazyflie_sim/crazyflie_sil.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ def goTo(self, goal, yaw, duration, relative=False, groupMask=0):
firm.mkvec(*goal),
yaw, duration, self.time_func())
except TypeError:
print("Warning: Your Crazyflie firmware is outdated. Please update to the latest version.")
message = ('Warning: Your Crazyflie firmware is outdated. '
' Please update to the latest version.')
print(message)
firm.plan_go_to(
self.planner,
relative,
Expand Down

0 comments on commit f7aba61

Please sign in to comment.