Skip to content

Commit

Permalink
Thoroughly Troubleshoot Tragic Type Transgressions
Browse files Browse the repository at this point in the history
  • Loading branch information
SyniRon committed Sep 23, 2023
1 parent 3e25ffa commit d6a5118
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ spec:
name: cavbotenv
key: api_key
- name: DISCORD_ID
value: 109869242148491264
value: "109869242148491264"
- name: OWNER_ID
value: 130158049968128000
value: "130158049968128000"
imagePullSecrets:
- name: s6containers
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# Set the bot's status activity
status = discord.Activity(name="https://7cav.us", type=3)

discord_id = os.getenv("DISCORD_ID")
discord_id = int(os.getenv("DISCORD_ID"))
owner_id = int(os.getenv("OWNER_ID"))


Expand Down

0 comments on commit d6a5118

Please sign in to comment.