Skip to content

Commit

Permalink
fix: fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
anesson-cs committed Jul 16, 2024
1 parent 739d639 commit 9c58e01
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/units/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2408,7 +2408,12 @@ class DummyConfig:

search_plugin.config = DummyConfig()

kwargs = {"page": 1, "items_per_page": 2, "productType": "S2_MSI_L1C", "cloud_cover": 80}
kwargs = {
"page": 1,
"items_per_page": 2,
"productType": "S2_MSI_L1C",
"cloud_cover": 80,
}
sr = self.dag._do_search(
search_plugin=search_plugin, count=False, raise_errors=False, **kwargs
)
Expand Down

0 comments on commit 9c58e01

Please sign in to comment.