1
0
mirror of https://github.com/JoelBender/bacpypes synced 2025-10-27 00:57:47 +08:00

minor code formatting

This commit is contained in:
Joel Bender
2017-09-19 02:41:58 -04:00
parent a84973df5e
commit 8b1cccdbfb
3 changed files with 6 additions and 6 deletions

View File

@@ -161,7 +161,7 @@ def run(spin=SPIN, sigterm=stop, sigusr1=print_stack):
# call the functions
for fn, args, kwargs in fnlist:
# if _debug: run._debug(" - call: %r %r %r", fn, args, kwargs)
fn( *args, **kwargs)
fn(*args, **kwargs)
# done with this list
del fnlist
@@ -212,7 +212,7 @@ def run_once():
# call the functions
for fn, args, kwargs in fnlist:
if _debug: run_once._debug(" - call: %r %r %r", fn, args, kwargs)
fn( *args, **kwargs)
fn(*args, **kwargs)
# done with this list
del fnlist