mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Use lowercase tuple where possible (#6170)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import sys
|
||||
from typing import FrozenSet, Tuple
|
||||
from typing import FrozenSet
|
||||
|
||||
from .connections import Connection as Connection
|
||||
from .constants import FIELD_TYPE as FIELD_TYPE
|
||||
@@ -53,7 +53,7 @@ else:
|
||||
def get_client_info() -> str: ...
|
||||
|
||||
__version__: str
|
||||
version_info: Tuple[int, int, int, str, int]
|
||||
version_info: tuple[int, int, int, str, int]
|
||||
NULL: str
|
||||
|
||||
# pymysql/__init__.py says "Connect = connect = Connection = connections.Connection"
|
||||
|
||||
Reference in New Issue
Block a user