Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions config.py
Original file line number Diff line number Diff line change
@@ -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
}
14 changes: 7 additions & 7 deletions keys.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
keys = dict(
client_id="",
client_secret="",
user_agent="",
username="",
password="",
)
keys = {
"client_id": "",
"client_secret": "",
"user_agent": "",
"username": "",
"password": ""
}