Skip to content

Commit

Permalink
Test.
Browse files Browse the repository at this point in the history
  • Loading branch information
lymereJ committed Oct 27, 2023
1 parent 2330460 commit 0dfb38c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions copper/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
"""

import os
from pathlib import Path

LOGGING_FORMAT = "%(asctime)s - %(levelname)s - %(message)s"
CHILLER_SCHEMA_PATH = os.path.join("./schema/", "copper.chiller.schema.json")
filep = Path(__file__)
CHILLER_SCHEMA_PATH = os.path.join(filep, "/schema/", "copper.chiller.schema.json")
CHILLER_GENE_SCHEMA_PATH = os.path.join(
"./schema/", "copper.chiller.generate_set_of_curves.schema.json"
filep, "/schema/", "copper.chiller.generate_set_of_curves.schema.json"
)
CHILLER_ACTION_SCHEMA_PATH = os.path.join(
"./schema/", "copper.chiller.action.schema.json"
filep, "/schema/", "copper.chiller.action.schema.json"
)
SCHEMA_PATH = os.path.join("./schema/", "copper.schema.json")
SCHEMA_PATH = os.path.join(filep, "/schema/", "copper.schema.json")

0 comments on commit 0dfb38c

Please sign in to comment.