Skip to content

Commit

Permalink
test: Remaining fixups for reformat test scripts with autopep8
Browse files Browse the repository at this point in the history
Reformat the test/* and se/test/* scripts using the following command:

  $ autopep8 --in-place --aggressive test/* se/test/*

Signed-off-by: Krzysztof Kozlowski <[email protected]>
  • Loading branch information
krzk committed Jun 24, 2024
1 parent 17b8110 commit 54daaa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/bt-handover
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def remove_paired_devices(bt_adapter):
"org.bluez.Adapter1")
break

if(bluez_adapter is None):
if (bluez_adapter is None):
print("Bluetooth adapter %s could not be found" % bluez_adapter)
exit()

Expand Down
2 changes: 1 addition & 1 deletion test/phdc-simple-manager
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ if "__main__" == __name__:
try:
mainloop.run()

except(KeyboardInterrupt):
except (KeyboardInterrupt):
# Call for unregister...
neard_manager.UnregisterAgent(simple_path, 'Manager')
neard_manager.UnregisterAgent(valid_path, 'Manager')

0 comments on commit 54daaa5

Please sign in to comment.