Skip to content

Commit

Permalink
optional arg so tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Tw1sm committed Oct 18, 2024
1 parent 42392e5 commit 670dbf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bofhound/parsers/generic_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self):


@staticmethod
def parse_file(file, is_outflankc2):
def parse_file(file, is_outflankc2=False):
with codecs.open(file, 'r', 'utf-8') as f:
if is_outflankc2:
return GenericParser.parse_outflank_file(f.read())
Expand Down

0 comments on commit 670dbf5

Please sign in to comment.