Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions aria/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
import os
import json

from functools import lru_cache


CONFIG_DIR = os.path.join(os.path.dirname(__file__), "..", "config")


@lru_cache(maxsize=1)
def load_config():
"""Returns a dictionary loaded from the config.json file."""
with open(os.path.join(CONFIG_DIR, "config.json")) as f:
Expand Down
Loading
Loading