Skip to content

Commit ae5b19a

Browse files
committed
fixed python styling issues that made me go bonkers
1 parent fdc50fd commit ae5b19a

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Interlace/interlace.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def task_queue_generator_func(arguments, output, repeat):
1818
output.terminal(Level.THREAD, task.name(), "Added to Queue")
1919
yield task
2020

21+
2122
def main():
2223
parser = InputParser()
2324
arguments = parser.parse(argv[1:])

Interlace/lib/core/input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def parse_and_group_target_specs(target_specs, nocidr):
209209
target_spec = IPSet((target_spec,))
210210
else:
211211
target_spec = [target_spec]
212-
212+
213213
for i in target_spec:
214214
ips_list.append(str(i))
215215
return (str_targets, set(ips_list))

Interlace/lib/core/output.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ def terminal(self, level, target, command, message=""):
4242
'target': target,
4343
'command': command,
4444
'message': message,
45-
'leader': leader
45+
'leader': leader
4646
}
4747

4848
if not self.silent:
4949
if level == 1:
5050
template = '[{time}] {leader} [{target}] {command} {message}'
5151
else:
5252
template = '[{time}] {leader} [{target}] {command} {message}'
53-
53+
5454
print(template.format(**format_args))
5555

5656

Interlace/lib/threader.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
else:
1212
shell = None
1313

14+
1415
class Task(object):
1516
def __init__(self, command, silent=False):
1617
self.task = command

0 commit comments

Comments
 (0)