Skip to content

Commit

Permalink
Added output_dir to BaseAnalysis
Browse files Browse the repository at this point in the history
  • Loading branch information
AryazE committed Mar 5, 2024
1 parent 8b3d771 commit 79259ac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/dynapyt/analyses/BaseAnalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class BaseAnalysis:
def __init__(self, conf: str = None, output_dir: str = None) -> None:
self.asts = {}
self.conf = conf
self.output_dir = output_dir

def _get_ast(self, filepath: str) -> cst.CSTNodeT:
if not path.exists(filepath):
Expand Down

0 comments on commit 79259ac

Please sign in to comment.