Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
julienthevenoz committed Apr 15, 2024
1 parent 40d5e4a commit 76638d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crazyflie_examples/crazyflie_examples/figure8.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def main():
traj1.loadcsv(Path(__file__).parent / 'data/figure8.csv')

# enable logging
allcfs.setParam("usd.logging", 1)
allcfs.setParam('usd.logging', 1)

TRIALS = 1
TIMESCALE = 1.0
Expand All @@ -40,7 +40,7 @@ def main():
timeHelper.sleep(3.0)

# disable logging
allcfs.setParam("usd.logging", 0)
allcfs.setParam('usd.logging', 0)


if __name__ == '__main__':
Expand Down
4 changes: 2 additions & 2 deletions crazyflie_examples/crazyflie_examples/multi_trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def main():
n = 2 # number of distinct trajectories

# enable logging
allcfs.setParam("usd.logging", 1)
allcfs.setParam('usd.logging', 1)

for i in range(n):
traj = Trajectory()
Expand All @@ -42,7 +42,7 @@ def main():
timeHelper.sleep(3.0)

# disable logging
allcfs.setParam("usd.logging", 0)
allcfs.setParam('usd.logging', 0)


if __name__ == '__main__':
Expand Down

0 comments on commit 76638d2

Please sign in to comment.