Skip to content

Commit

Permalink
fix flake8 issue
Browse files Browse the repository at this point in the history
fix flake8 issue
  • Loading branch information
stanley31huang committed Jan 10, 2025
1 parent 6e43a9d commit e21e641
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def rpyc_client(host, cmd, *args, **kwargs):
wrap = rpyc.async_(func)
res = wrap(*args, **kwargs)
while res.ready:
print("Waiting for RPYC server complete %s".format(func))
print("Waiting for RPYC server complete {}".format(func))
time.sleep(1)
break
if getattr(res._conn.root, "logs"):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ def usb_storage_test(usb_type):
)
watcher.run_storage(mounted_partition)
# usb_read_write been imported in run_watcher
# the temporary mount point been created while import it and been removed in gen_random_file function
# thus, we need to reload it to create temporary mount point in every testing cycle
# the temporary mount point been created while import it
# and the directory been removed in gen_random_file function
# thus, we need to reload it to create temporary mount point
# in every testing cycle
reload(usb_read_write)

0 comments on commit e21e641

Please sign in to comment.