Fix linter issues
This commit is contained in:
@@ -20,7 +20,7 @@ LOG_LEVEL = os.getenv("LOG_LEVEL") # Log level
|
||||
|
||||
# Your message ID for authorization separated by commas
|
||||
msg_ids = os.getenv("MSG_IDS")
|
||||
ALLOWED_IDS = set([ int(i) for i in msg_ids.split(",") ]) # Convert to set
|
||||
ALLOWED_IDS = set([int(i) for i in msg_ids.split(",")]) # Convert to set
|
||||
|
||||
log = logger.configure_logger(LOG_LEVEL)
|
||||
|
||||
|
||||
6
test.py
Normal file
6
test.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from tiktok_downloader import snaptik
|
||||
|
||||
videos = snaptik("https://vm.tiktok.com/ZGde8k5P7/")
|
||||
|
||||
for video in videos:
|
||||
print(video.json)
|
||||
0
tests/test_bot.py
Normal file
0
tests/test_bot.py
Normal file
Reference in New Issue
Block a user