Skip to content

Commit

Permalink
flake8 formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
julienthevenoz committed Apr 15, 2024
1 parent 44db5a3 commit 40d5e4a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions crazyflie_examples/crazyflie_examples/figure8.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def main():

traj1 = Trajectory()
traj1.loadcsv(Path(__file__).parent / 'data/figure8.csv')
#enable logging

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

TRIALS = 1
Expand All @@ -38,8 +38,8 @@ def main():

allcfs.land(targetHeight=0.06, duration=2.0)
timeHelper.sleep(3.0)
#disable logging

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


Expand Down
8 changes: 4 additions & 4 deletions crazyflie_examples/crazyflie_examples/multi_trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def main():
allcfs = swarm.allcfs
trajs = []
n = 2 # number of distinct trajectories
#enable logging

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

for i in range(n):
Expand All @@ -40,8 +40,8 @@ def main():

allcfs.land(targetHeight=0.06, duration=2.0)
timeHelper.sleep(3.0)
#disable logging

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


Expand Down

0 comments on commit 40d5e4a

Please sign in to comment.