mirror of
https://git.wownero.com/lza_menace/suchwow.git
synced 2024-08-15 01:03:19 +00:00
fix config options
This commit is contained in:
parent
79aedd8310
commit
be59d6a2b3
1 changed files with 5 additions and 5 deletions
|
@ -5,11 +5,11 @@ from suchwow import config
|
||||||
class Reddit(object):
|
class Reddit(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.reddit = Reddit(
|
self.reddit = Reddit(
|
||||||
client_id=config.get("PRAW_CLIENT_ID"),
|
client_id=config.PRAW_CLIENT_ID,
|
||||||
client_secret=config.get("PRAW_CLIENT_SECRET"),
|
client_secret=config.PRAW_CLIENT_SECRET,
|
||||||
user_agent=config.get("PRAW_USER_AGENT"),
|
user_agent=config.PRAW_USER_AGENT,
|
||||||
username=config.get("PRAW_USERNAME"),
|
username=config.PRAW_USERNAME,
|
||||||
password=config.get("PRAW_PASSWORD")
|
password=config.PRAW_PASSWORD
|
||||||
)
|
)
|
||||||
self.subreddit = "wownero"
|
self.subreddit = "wownero"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue