Skip to content

Commit

Permalink
Fix linter: dots can be next line
Browse files Browse the repository at this point in the history
  • Loading branch information
Salamandar committed Dec 11, 2024
1 parent c4ba7a9 commit c03e8e1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/utils/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit c03e8e1

Please sign in to comment.