Skip to content

Commit

Permalink
Use python 3.9 type annotations.
Browse files Browse the repository at this point in the history
Signed-off-by: Jackson Goerner <[email protected]>
  • Loading branch information
glipR committed Dec 10, 2024
1 parent f71ca11 commit a987961
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/amundsen_application/api/log/v0.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import logging

from typing import List
from http import HTTPStatus

from flask import Response, jsonify, make_response, request
Expand Down Expand Up @@ -43,7 +44,7 @@ def _log_generic_action(*,
resource_type: str,
search_term: str,
search_page_index: int,
search_results: list[str]) -> None:
search_results: List[str]) -> None:
pass # pragma: no cover

try:
Expand Down

0 comments on commit a987961

Please sign in to comment.