Merge "import "collections.abc" explicitly"

This commit is contained in:
Zuul 2021-03-05 09:30:12 +00:00 committed by Gerrit Code Review
commit c056b95755
4 changed files with 4 additions and 2 deletions

View File

@ -21,6 +21,7 @@ the classes contained therein.
""" """
import collections import collections
import collections.abc
import copy import copy
from importlib import import_module from importlib import import_module
import inspect import inspect

View File

@ -13,6 +13,7 @@
# under the License. # under the License.
import collections import collections
import collections.abc
import copy import copy
import inspect import inspect
import json import json

View File

@ -16,7 +16,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import collections import collections.abc
import copy import copy
import logging import logging
import os import os

View File

@ -10,7 +10,7 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import collections import collections.abc
import functools import functools
import inspect import inspect