get rid of import and functions on declaring variables in defaults module

This commit is contained in:
Von Random 2024-10-23 14:40:55 +03:00
parent 16d669164b
commit b80888bcd7

View file

@ -1,6 +1,4 @@
import os
CONFDIR = '/etc/pgbot'
CONFIG = os.path.join(CONFDIR, 'pgbot.yml')
TOKENS = os.path.join(CONFDIR, 'tokens.yml')
SCHEDULE = os.path.join(CONFDIR, '/sched.yml')
CONFIG = CONFDIR + 'pgbot.yml'
TOKENS = CONFDIR + 'tokens.yml'
SCHEDULE = CONFDIR + '/sched.yml'