mirror of https://github.com/scrapy/scrapy.git
Fix MutableMapping import for Python 3.8.
This commit is contained in:
parent
0c8e21b8ac
commit
21fa076181
|
|
@ -7,10 +7,18 @@ See documentation in docs/topics/item.rst
|
|||
from __future__ import annotations
|
||||
|
||||
from abc import ABCMeta
|
||||
from collections.abc import MutableMapping
|
||||
from copy import deepcopy
|
||||
from pprint import pformat
|
||||
from typing import TYPE_CHECKING, Any, Dict, Iterator, KeysView, NoReturn, Tuple
|
||||
from typing import (
|
||||
TYPE_CHECKING,
|
||||
Any,
|
||||
Dict,
|
||||
Iterator,
|
||||
KeysView,
|
||||
MutableMapping,
|
||||
NoReturn,
|
||||
Tuple,
|
||||
)
|
||||
|
||||
from scrapy.utils.trackref import object_ref
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue