lint: ignore a type false positive
This commit is contained in:
parent
dd224346fd
commit
0008a24a0f
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ def active_proxy_urls() -> List[str]:
|
|||
|
||||
|
||||
def proxy_by_url(url: str) -> Proxy:
|
||||
return Proxy.query.filter(
|
||||
return Proxy.query.filter( # type: ignore[no-any-return]
|
||||
Proxy.deprecated.is_(None),
|
||||
Proxy.destroyed.is_(None),
|
||||
Proxy.url == url
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue