mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-01 13:40:23 +08:00
Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
from collections.abc import Generator
|
||||
from typing import TextIO
|
||||
from typing import TextIO, type_check_only
|
||||
|
||||
import serial
|
||||
|
||||
def sixteen(data: bytes) -> Generator[tuple[str, str] | tuple[None, None], None, None]: ...
|
||||
def hexdump(data: bytes) -> Generator[tuple[int, str], None, None]: ...
|
||||
|
||||
@type_check_only
|
||||
class _Formatter:
|
||||
def rx(self, data: bytes) -> None: ...
|
||||
def tx(self, data: bytes) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user