Skip to content

Commit a824afe

Browse files
committed
Filter chains can actually be any mapping
1 parent 0339a8f commit a824afe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/3.3/lzma.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import io
22
import sys
3-
from typing import Any, Dict, BinaryIO, IO, List, Optional, Union
3+
from typing import Any, BinaryIO, IO, List, Mapping, Optional, Union
44

55
if sys.version_info >= (3, 6):
66
from os import PathLike
@@ -10,7 +10,7 @@ elif sys.version_info >= (3, 3):
1010
else:
1111
_PathOrFile = str
1212

13-
_FilterChain = List[Dict[str, Any]]
13+
_FilterChain = List[Mapping[str, Any]]
1414

1515
FORMAT_AUTO: int
1616
FORMAT_XZ: int

0 commit comments

Comments
 (0)