From c03e8e159e2cf6ec3c0717810144915cb165a5aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Wed, 11 Dec 2024 21:33:21 +0100 Subject: [PATCH] Fix linter: dots can be next line --- src/utils/form.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/utils/form.py b/src/utils/form.py index 890b66b491..9fe85aede0 100644 --- a/src/utils/form.py +++ b/src/utils/form.py @@ -2215,13 +2215,15 @@ def ask_questions_and_parse_answers( @overload def parse_raw_options( raw_options: dict[str, Any], serialize: Literal[True] -) -> list[dict[str, Any]]: ... +) -> list[dict[str, Any]]: + ... @overload def parse_raw_options( raw_options: dict[str, Any], serialize: Literal[False] = False -) -> list[AnyOption]: ... +) -> list[AnyOption]: + ... def parse_raw_options(