Skip to content

Commit

Permalink
Checking constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
AryazE committed Nov 9, 2023
1 parent a09d160 commit fdc092a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynapyt/instrument/CodeInstrumenter.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class CodeInstrumenter(m.MatcherDecoratableTransformer):
def __init__(self, src, file_path, iids: IIDs, selected_hooks):
super().__init__()
self.source = src
self.file_path = file_path
self.file_path = str(Path(file_path).resolve())
self.iids = iids
self.name_stack = []
self.current_try = []
Expand Down

0 comments on commit fdc092a

Please sign in to comment.