Skip to content

Commit

Permalink
Merge pull request TamilanBotsZ#8 from VoiceOfSha/patch-3
Browse files Browse the repository at this point in the history
Update info.py
  • Loading branch information
TamilanBotsZ authored Feb 7, 2023
2 parents 428d779 + a343389 commit 7e57e95
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions info.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ def is_enabled(value, default):
LOG_STR += (f"MAX_LIST_ELM Found, long list will be shortened to first {MAX_LIST_ELM} elements\n" if MAX_LIST_ELM else "Full List of casts and crew will be shown in imdb template, restrict them by adding a value to MAX_LIST_ELM\n")
LOG_STR += f"Your current IMDB template is {IMDB_TEMPLATE}"

SELF_DELETE_SECONDS = int(environ.get('SELF_DELETE_SECONDS', 300))
SELF_DELETE = environ.get('SELF_DELETE', True)
if SELF_DELETE == "True":
SELF_DELETE = True
AUTO_DELETE_SECONDS = int(environ.get('AUTO_DELETE_SECONDS', 300))
AUTO_DELETE = environ.get('AUTO_DELETE', True)
if AUTO_DELETE == "True":
AUTO_DELETE = True

URL_SHORTENR_WEBSITE = environ.get('URL_SHORTENR_WEBSITE', '')
URL_SHORTNER_WEBSITE_API = environ.get('URL_SHORTNER_WEBSITE_API', '')
Expand Down

0 comments on commit 7e57e95

Please sign in to comment.