Clarify return type for mypy

This commit is contained in:
Alexandre Aubin 2021-10-01 19:20:21 +02:00
parent 34d9573121
commit 310b664fab

View file

@ -1983,7 +1983,7 @@ def _is_app_repo_url(string: str) -> bool:
if '@' in string:
return True
return APP_REPO_URL.match(string)
return bool(APP_REPO_URL.match(string))
def _app_quality(src: str) -> str: