mirror of
https://gitea.phreedom.club/localhost_frssoft/FMN_bot
synced 2024-11-22 11:39:20 +02:00
some pep8 fixes
This commit is contained in:
parent
7a78aa6244
commit
1ecaddfaff
|
@ -15,8 +15,9 @@ from loguru import logger
|
|||
def get_peertube_stream_name():
|
||||
try:
|
||||
return requests.get("https://xxivproduction.video/api/v1/videos/1FZeVVVzWBFShaxQVkYiXd").json()['name']
|
||||
except:
|
||||
return "[не удалось получить название]"
|
||||
except Exception as E:
|
||||
return f"[не удалось получить название {E}]"
|
||||
|
||||
|
||||
@logger.catch
|
||||
def get_control_mention():
|
||||
|
@ -72,7 +73,7 @@ def get_control_mention():
|
|||
write_states(states_stor.states)
|
||||
break
|
||||
if now_hour == 0:
|
||||
logger.warning(f'Автоматический триггер в полночи сработал')
|
||||
logger.warning('Автоматический триггер в полночи сработал')
|
||||
thread_created_at = time_now
|
||||
|
||||
delta = relativedelta(hour=hour_poll_posting, minute=0, second=0, weekday=TU(1))
|
||||
|
|
Loading…
Reference in New Issue