diff --git a/config.py b/config.py index 348ffe9..510d779 100644 --- a/config.py +++ b/config.py @@ -1,7 +1,7 @@ -config = dict( - subreddit="mredinlaw_bot_testing", # Subreddit - comment_text="Demo Text", # Text the bot should comment - votes=20, # Used for comments.py - score=-2, # Used for votes.py - minutes=180 # Used in both -) +config = { + "subreddit": "mredinlaw_bot_testing", # Subreddit + "comment_text": "Demo Text", # Text the bot should comment + "votes": 20, # Used for comments.py + "score": -2, # Used for votes.py + "minutes": 180 # Used in both +} diff --git a/keys.py b/keys.py index a7125bc..90973d9 100644 --- a/keys.py +++ b/keys.py @@ -1,7 +1,7 @@ -keys = dict( - client_id="", - client_secret="", - user_agent="", - username="", - password="", -) +keys = { + "client_id": "", + "client_secret": "", + "user_agent": "", + "username": "", + "password": "" +}