mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
11 lines
153 B
Python
11 lines
153 B
Python
|
"""
|
||
|
Merges default settings with user-defined settings
|
||
|
"""
|
||
|
|
||
|
from default_settings import *
|
||
|
|
||
|
try:
|
||
|
from settings import *
|
||
|
except ImportError:
|
||
|
pass
|