mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Clarify return type for mypy
This commit is contained in:
parent
34d9573121
commit
310b664fab
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue