Use TypeAlias for type aliases where possible, part II (#7667)

This commit is contained in:
Alex Waygood
2022-04-20 20:02:47 +01:00
committed by GitHub
parent c653be73b8
commit b093c90a94
41 changed files with 91 additions and 90 deletions

View File

@@ -1,6 +1,6 @@
import sys
from _typeshed import Self, SupportsGetItem, SupportsItemAccess
from builtins import type as _type
from builtins import list as _list, type as _type
from collections.abc import Iterable, Iterator, Mapping
from types import TracebackType
from typing import IO, Any, Protocol
@@ -87,8 +87,6 @@ class MiniFieldStorage:
value: Any
def __init__(self, name: Any, value: Any) -> None: ...
_list = list
class FieldStorage:
FieldStorageClass: _type | None
keep_blank_values: int