Fix time zone in both commands and format code with Black

This commit is contained in:
2022-09-17 22:28:45 +02:00
parent 21be6c00b3
commit 68cd8d964a

View File

@ -166,10 +166,10 @@ async def list_command(ctx: interactions.CommandContext):
], ],
) )
async def command_add( async def command_add(
ctx: interactions.CommandContext, ctx: interactions.CommandContext,
message_reason: str, message_reason: str,
message_date: str, message_date: str,
different_channel: interactions.Channel | None = None, different_channel: interactions.Channel | None = None,
): ):
"""Add a new reminder. You can add a date and message. """Add a new reminder. You can add a date and message.
@ -185,6 +185,7 @@ async def command_add(
f"{message_date}", f"{message_date}",
settings={ settings={
"PREFER_DATES_FROM": "future", "PREFER_DATES_FROM": "future",
"TIMEZONE": f"{config_timezone}",
"TO_TIMEZONE": f"{config_timezone}", "TO_TIMEZONE": f"{config_timezone}",
}, },
) )
@ -311,21 +312,21 @@ async def command_add(
], ],
) )
async def remind_cron( async def remind_cron(
ctx: interactions.CommandContext, ctx: interactions.CommandContext,
message_reason: str, message_reason: str,
year: int | None = None, year: int | None = None,
month: int | None = None, month: int | None = None,
day: int | None = None, day: int | None = None,
week: int | None = None, week: int | None = None,
day_of_week: str | None = None, day_of_week: str | None = None,
hour: int | None = None, hour: int | None = None,
minute: int | None = None, minute: int | None = None,
second: int | None = None, second: int | None = None,
start_date: str | None = None, start_date: str | None = None,
end_date: str | None = None, end_date: str | None = None,
timezone: str | None = None, timezone: str | None = None,
jitter: int | None = None, jitter: int | None = None,
different_channel: interactions.Channel | None = None, different_channel: interactions.Channel | None = None,
): ):
"""Create new cron job. Works like UNIX cron. """Create new cron job. Works like UNIX cron.
@ -462,18 +463,18 @@ async def remind_cron(
], ],
) )
async def remind_interval( async def remind_interval(
ctx: interactions.CommandContext, ctx: interactions.CommandContext,
message_reason: str, message_reason: str,
weeks: int = 0, weeks: int = 0,
days: int = 0, days: int = 0,
hours: int = 0, hours: int = 0,
minutes: int = 0, minutes: int = 0,
seconds: int = 0, seconds: int = 0,
start_date: str | None = None, start_date: str | None = None,
end_date: str | None = None, end_date: str | None = None,
timezone: str | None = None, timezone: str | None = None,
jitter: int | None = None, jitter: int | None = None,
different_channel: interactions.Channel | None = None, different_channel: interactions.Channel | None = None,
): ):
"""Create a new reminder that triggers based on an interval. """Create a new reminder that triggers based on an interval.