(core) Import Hashable from six.moves.collections_abc

Summary: Copy of https://github.com/gristlabs/grist-core/pull/136

Test Plan: this

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D3278
This commit is contained in:
Alex Hall 2022-02-21 14:44:44 +02:00
parent 21f2765a59
commit 4c935e7fb3
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ from collections import namedtuple, OrderedDict, defaultdict
import six import six
from six.moves import zip from six.moves import zip
from six.moves.collections_abc import Hashable from six.moves.collections_abc import Hashable # pylint:disable-all
from sortedcontainers import SortedSet from sortedcontainers import SortedSet
import acl import acl

View File

@ -5,7 +5,7 @@ import unittest
import six import six
from six.moves import xrange from six.moves import xrange
from six.moves.collections_abc import Hashable from six.moves.collections_abc import Hashable # pylint:disable-all
import match_counter import match_counter
from testutil import repeat_until_passes from testutil import repeat_until_passes