Skip to content

Commit

Permalink
Relax type to appease Mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
uranusjr committed Mar 15, 2024
1 parent ed69e62 commit 27e903f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
logger = logging.getLogger(__name__)


def sanitize_args(args: dict[str, str]) -> dict[str, str]:
def sanitize_args(args: dict[str, Any]) -> dict[str, Any]:
"""
Remove all parameters starting with `_`.
Expand Down

0 comments on commit 27e903f

Please sign in to comment.