Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ReiHashimoto committed Mar 27, 2024
1 parent 3cd6902 commit 6911c33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions studio/app/dir_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ class DIRPATH:
STUDIO_DIR = os.path.dirname(os.path.dirname(__file__))
APP_DIR = os.path.dirname(__file__)
CONFIG_DIR = f"{STUDIO_DIR}/config"
if os.path.isfile(f"{CONFIG_DIR}/.env"):
load_dotenv(f"{CONFIG_DIR}/.env")

CONDAENV_DIR = (
f"{os.path.dirname(os.path.dirname(os.path.dirname(__file__)))}/conda"
)
if os.path.isfile(f"{CONDAENV_DIR}/.env"):
load_dotenv(f"{CONFIG_DIR}/.env")

SNAKEMAKE_FILEPATH = f"{APP_DIR}/Snakefile"
EXPERIMENT_YML = "experiment.yaml"
Expand Down

0 comments on commit 6911c33

Please sign in to comment.