mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
from collections.abc import Callable
|
||||
from typing import Protocol
|
||||
from typing import Protocol, type_check_only
|
||||
|
||||
from authlib.oauth2.rfc6749 import ClientMixin
|
||||
|
||||
@type_check_only
|
||||
class _TokenGenerator(Protocol):
|
||||
def __call__(self, *, client: ClientMixin, grant_type: str, user, scope: str) -> str: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user