refactor: utils/videos.py uses new toml config

pull/861/head
Callum Leslie 3 years ago
parent bc631c57af
commit 8bc72da9c4
No known key found for this signature in database
GPG Key ID: D382C4AFEECEAA90

@ -1,11 +1,11 @@
import json import json
import os import os
import time import time
from os import getenv
from typing import Dict from typing import Dict
from praw.models import Submission from praw.models import Submission
from utils import settings
from utils.console import print_step from utils.console import print_step
@ -25,7 +25,7 @@ def check_done(
done_videos = json.load(done_vids_raw) done_videos = json.load(done_vids_raw)
for video in done_videos: for video in done_videos:
if video["id"] == str(redditobj): if video["id"] == str(redditobj):
if getenv("POST_ID"): if settings.config["reddit"]["thread"]["post_id"]:
print_step( print_step(
"You already have done this video but since it was declared specifically in the .env file the program will continue" "You already have done this video but since it was declared specifically in the .env file the program will continue"
) )

Loading…
Cancel
Save