mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-24 21:09:49 -06:00
7 lines
161 B
Python
Executable File
7 lines
161 B
Python
Executable File
from os import environ as env
|
|
# automatically updates some dev envs. need to remove for production.
|
|
try:
|
|
__import__('envs.py')
|
|
except ImportError:
|
|
pass
|