Skip to content

Commit

Permalink
Update Miscellaneous.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MekhyW committed Sep 7, 2024
1 parent b0d504c commit c985900
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Bot/Miscellaneous.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
bloblist_patas = list(storage_bucket.list_blobs(prefix="Countdown/Patas"))
bloblist_fursmeet = list(storage_bucket.list_blobs(prefix="Countdown/FurSMeet"))
bloblist_trex = list(storage_bucket.list_blobs(prefix="Countdown/Trex"))
custom_commands = [folder for folder in storage_bucket.list_blobs(prefix="Custom/") if folder.name.endswith('/')]
custom_commands = [folder.name.split('/')[0] for folder in storage_bucket.list_blobs(prefix="Custom/") if folder.name.endswith('/')]
print("Custom commands: " + str(custom_commands))
NEW_CHAT_LINK = "https://t.me/CookieMWbot?startgroup=new"
TEST_CHAT_LINK = "https://t.me/+mX6W3tGXPew2OTIx"
UPDATES_CHANNEL_LINK = "https://t.me/cookiebotupdates"
Expand Down

0 comments on commit c985900

Please sign in to comment.