mirror of
https://github.com/cooperhammond/irs.git
synced 2025-07-02 15:08:14 +00:00
10 lines
167 B
Python
10 lines
167 B
Python
import sys
|
|
from os import path
|
|
|
|
|
|
sys.path.append(path.expanduser("~/.irs")) # Add config to path
|
|
|
|
import config_ # from "~/.irs/config_.py"
|
|
|
|
CONFIG = config_.CONFIG
|