Skip to content

Commit

Permalink
ran black
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-sanche committed Dec 15, 2023
1 parent 85b7089 commit c3d07eb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions tests/system/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"""
import sys
import os

script_path = os.path.dirname(os.path.realpath(__file__))
sys.path.append(script_path)

Expand Down
1 change: 0 additions & 1 deletion tests/unit/data/_async/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,6 @@ async def test_read_rows_query_matches_request(self, include_app_profile):
@pytest.mark.parametrize("operation_timeout", [0.001, 0.023, 0.1])
@pytest.mark.asyncio
async def test_read_rows_timeout(self, operation_timeout):

async with self._make_table() as table:
read_rows = table.client._gapic_client.read_rows
query = ReadRowsQuery()
Expand Down
2 changes: 0 additions & 2 deletions tests/unit/data/test_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,6 @@ def _get_class(self):
return FailedMutationEntryError

def _make_one(self, idx=9, entry=mock.Mock(), cause=RuntimeError("mock")):

return self._get_class()(idx, entry, cause)

def test_raise(self):
Expand Down Expand Up @@ -516,7 +515,6 @@ def _get_class(self):
return FailedQueryShardError

def _make_one(self, idx=9, query=mock.Mock(), cause=RuntimeError("mock")):

return self._get_class()(idx, query, cause)

def test_raise(self):
Expand Down

0 comments on commit c3d07eb

Please sign in to comment.