Skip to content

Commit

Permalink
Fix black linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmith023 committed Aug 28, 2024
1 parent 40afe86 commit 753ba9e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions integration/test_iterator.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,13 @@ class Data(TypedDict):
"return_properties",
[None, Data, ["data"]],
)
@pytest.mark.parametrize(
"cache_size",
[None, 100, 10000]
)
@pytest.mark.parametrize("cache_size", [None, 100, 10000])
def test_iterator_arguments(
collection_factory: CollectionFactory,
include_vector: bool,
return_metadata: Optional[METADATA],
return_properties: Optional[PROPERTIES],
cache_size: Optional[int]
cache_size: Optional[int],
) -> None:
collection = collection_factory(
properties=[
Expand All @@ -74,7 +71,10 @@ def test_iterator_arguments(
)

iter_ = collection.iterator(
include_vector, return_metadata=return_metadata, return_properties=return_properties, cache_size=cache_size
include_vector,
return_metadata=return_metadata,
return_properties=return_properties,
cache_size=cache_size,
)

# Expect everything back
Expand Down

0 comments on commit 753ba9e

Please sign in to comment.