mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-07 22:25:35 +00:00
Fix mypy warning
This commit is contained in:
parent
ff36755345
commit
5f94889d01
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ def settings_check(
|
|||
app_configs: Sequence[AppConfig] | None,
|
||||
databases: Sequence[str] | None,
|
||||
**kwargs: dict[str, Any],
|
||||
) -> list[Warning]:
|
||||
items = []
|
||||
) -> list[Error | Warning]:
|
||||
items: list[Error | Warning] = []
|
||||
|
||||
site_root_parts = urlsplit(settings.SITE_ROOT)
|
||||
if not site_root_parts.scheme:
|
||||
|
|
Loading…
Add table
Reference in a new issue