Skip to content

Commit

Permalink
Updated comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wixmix committed Apr 14, 2021
1 parent b84ee3a commit 8a49e52
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/fuzzingtool/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ def getIndexesToParse(content: str, searchFor: str = '$'):
return [i for i, char in enumerate(content) if char == searchFor]

def getLibPath():
"""Get the fuzzingtool lib path
@returns str: The fuzzingtool lib path
"""
from os.path import dirname, abspath
return dirname(dirname(abspath(__file__)))

Expand Down

0 comments on commit 8a49e52

Please sign in to comment.