Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michalkrzem committed Oct 16, 2024
1 parent 1c9cb7f commit 41c873d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions artemis/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 41c873d

Please sign in to comment.