made localcommand pep8 compliant
This commit is contained in:
parent
782c980b69
commit
9fc741106a
9 changed files with 34 additions and 28 deletions
|
@ -52,7 +52,7 @@ def restart():
|
|||
with open(filepaths.restarting_indicator, 'w') as f:
|
||||
f.write('t')
|
||||
daemonlaunch.kill_daemon()
|
||||
while localcommand.local_command('ping', maxWait=8) == 'pong!':
|
||||
while localcommand.local_command('ping', max_wait=8) == 'pong!':
|
||||
time.sleep(0.3)
|
||||
time.sleep(15)
|
||||
while (os.path.exists(filepaths.private_API_host_file) or
|
||||
|
|
|
@ -28,8 +28,8 @@ def do_runtime_test():
|
|||
f'daemon-event/test_runtime',
|
||||
post=True,
|
||||
is_json=True,
|
||||
postData={},
|
||||
maxWait=300
|
||||
post_data={},
|
||||
max_wait=300
|
||||
).get(300)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue