Fix deprecation warning: import ABC from collections.abc (#7892)

This commit is contained in:
Karthikeyan Singaravelan 2020-07-20 23:03:04 +05:30 committed by GitHub
parent 5ecf98f59e
commit a7b06a81f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 6 deletions

View file

@ -19,7 +19,7 @@
import itertools
import logging
from collections import Container
from collections.abc import Container
from http import HTTPStatus
from typing import Dict, Iterable, List, Optional, Sequence, Tuple, Union