Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTechromancer committed May 11, 2024
1 parent f430954 commit c69afd9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bbot/scanner/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ def __init__(self, targets, whitelist=None, blacklist=None, strict_scope=False):
blacklist = []
self.blacklist = Target(*blacklist)

def add(self, *args, **kwargs):
self.seeds.add(*args, **kwargs)

def merge(self, other):
self.seeds.add(other.seeds)
if other.whitelist is not None:
Expand Down

0 comments on commit c69afd9

Please sign in to comment.