Skip to content

Commit

Permalink
change os
Browse files Browse the repository at this point in the history
Signed-off-by: Asish Kumar <[email protected]>
  • Loading branch information
officialasishkumar committed Aug 12, 2024
1 parent 18f6d47 commit 207f7f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/benchmark_base.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import functools
import os
import os.environ as env
from copy import deepcopy
from pathlib import Path

Expand Down Expand Up @@ -62,7 +62,7 @@ def config_rpacket_tracking(self):
def tardis_ref_path(self):
ref_data_path = Path(
Path(__file__).parent.parent,
os.environ.get("TARDIS_REF_PATH")
env.get("TARDIS_REF_PATH")
).resolve()
return ref_data_path

Expand Down

0 comments on commit 207f7f2

Please sign in to comment.