Skip to content

Commit 6abc064

Browse files
committed
Removed comments
1 parent 67da487 commit 6abc064

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Interlace/lib/core/input.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ def pre_process_target_spec(target_spec):
179179
target_specs = itertools.chain(*target_specs)
180180

181181
def parse_and_group_target_specs(target_specs, nocidr):
182-
# issue #131 lies here
183182
str_targets = set()
184183
ips_list = list()
185184
for target_spec in target_specs:
@@ -199,7 +198,6 @@ def parse_and_group_target_specs(target_specs, nocidr):
199198
target_spec = glob_to_iprange(target_spec)
200199
else: # str IP addresses and str CIDR notations
201200
if "/" in target_spec:
202-
# CIDR
203201
target_spec = IPSet((target_spec,))
204202
else:
205203
target_spec = [target_spec]
@@ -271,8 +269,6 @@ def process_data_for_tasks_iterator(arguments):
271269

272270
if arguments.proto:
273271
protocols = arguments.proto.split(",")
274-
# if "," not in arguments.proto, [arguments.proto] is returned by
275-
# .split()
276272
else:
277273
protocols = None
278274

0 commit comments

Comments
 (0)