8000 ran black · googleapis/python-firestore@74a5d22 · GitHub
[go: up one dir, main page]

Skip to content

Commit 74a5d22

Browse files
committed
ran black
1 parent 0ff25c1 commit 74a5d22

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

google/cloud/firestore_v1/async_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,4 +435,4 @@ def _pipeline_cls(self):
435435
return AsyncPipeline
436436

437437
def pipeline(self) -> PipelineSource:
438-
return PipelineSource(self)
438+
return PipelineSource(self)

google/cloud/firestore_v1/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,4 +416,4 @@ def _pipeline_cls(self):
416416
return Pipeline
417417

418418
def pipeline(self) -> PipelineSource:
419-
return PipelineSource(self)
419+
return PipelineSource(self)

tests/system/test_system.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3275,7 +3275,13 @@ def test_query_with_or_composite_filter(collection, database, verify_pipeline):
32753275
"aggregation_type,expected_value", [("count", 5), ("sum", 100), ("avg", 4.0)]
32763276
)
32773277
def test_aggregation_queries_with_read_time(
3278-
collection, query, cleanup, database, aggregation_type, expected_value, verify_pipeline
3278+
collection,
3279+
query,
3280+
cleanup,
3281+
database,
3282+
aggregation_type,
3283+
expected_value,
3284+
verify_pipeline,
32793285
):
32803286
"""
32813287
Ensure that all aggregation queries work when read_time is passed into

0 commit comments

Comments
 (0)
0