get rid of import and functions on declaring variables in defaults module
This commit is contained in:
parent
16d669164b
commit
b80888bcd7
1 changed files with 3 additions and 5 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue