Skip to content

Commit

Permalink
fix: remove six dependency (#98)
Browse files Browse the repository at this point in the history
Removes dependency on `six` package as Python2 is no longer supported. Towards #94
  • Loading branch information
rafilong committed Jul 15, 2020
1 parent 546eb90 commit b264ccb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/unit/v1/test_query.py
Expand Up @@ -16,16 +16,11 @@
import unittest

import mock
import six

from tests.unit.v1.test_base_query import _make_credentials, _make_query_response


class TestQuery(unittest.TestCase):

if six.PY2:
assertRaisesRegex = unittest.TestCase.assertRaisesRegexp

@staticmethod
def _get_target_class():
from google.cloud.firestore_v1.query import Query
Expand Down

0 comments on commit b264ccb

Please sign in to comment.