Skip to content

Commit 468bafd

Browse files
committed
lint fix
1 parent 26a71c7 commit 468bafd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ansibleguy-webui/aw/execute/threader.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ class Workload(Thread):
1919
FAIL_SLEEP = 5
2020
MAX_CONFIG_INVALID = 3
2121

22-
def __init__(self, job: Job, manager, name: str, execution: (JobExecution, None), once: bool = False, daemon: bool = True):
22+
def __init__(
23+
self, job: Job, manager, name: str, execution: (JobExecution, None),
24+
once: bool = False, daemon: bool = True,
25+
):
2326
Thread.__init__(self, daemon=daemon, name=name)
2427
self.job = job
2528
self.execution = execution

0 commit comments

Comments
 (0)