From 41c873dfcd62f860a2f43216025d1b5134670398 Mon Sep 17 00:00:00 2001 From: michalkrzem Date: Wed, 16 Oct 2024 13:27:47 +0200 Subject: [PATCH] lint --- artemis/config.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/artemis/config.py b/artemis/config.py index bcda9582f..1e8c87c33 100644 --- a/artemis/config.py +++ b/artemis/config.py @@ -158,9 +158,9 @@ class PublicSuffixes: ] = get_config("ADDITIONAL_PUBLIC_SUFFIXES", default="", cast=decouple.Csv(str)) class Limits: - TASK_TIMEOUT_SECONDS: Annotated[int, "What is the maximum task run time (after which it will get killed)."] = ( - get_config("TASK_TIMEOUT_SECONDS", default=6 * 3600, cast=int) - ) + TASK_TIMEOUT_SECONDS: Annotated[ + int, "What is the maximum task run time (after which it will get killed)." + ] = get_config("TASK_TIMEOUT_SECONDS", default=6 * 3600, cast=int) REQUEST_TIMEOUT_SECONDS: Annotated[ int, @@ -184,9 +184,9 @@ class Miscellaneous: "API_TOKEN", default=None ) - REMOVE_LOGS_AFTER_DAYS: Annotated[int, "After what number of days the logs in karton-logs are removed."] = ( - get_config("REMOVE_LOGS_AFTER_DAYS", default=30) - ) + REMOVE_LOGS_AFTER_DAYS: Annotated[ + int, "After what number of days the logs in karton-logs are removed." + ] = get_config("REMOVE_LOGS_AFTER_DAYS", default=30) BLOCKLIST_FILE: Annotated[ str,