We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51af1fe commit 6a819e4Copy full SHA for 6a819e4
titiler/pystac/advanced_client.py
@@ -6,7 +6,7 @@
6
"""
7
8
import warnings
9
-from typing import Optional
+from typing import Dict, List, Optional
10
from urllib.parse import urlencode
11
12
import pystac
@@ -20,8 +20,8 @@ def get_aggregation(
20
self,
21
collection_id: str,
22
aggregation: str,
23
- aggregation_params: Optional[dict] = None,
24
- ) -> list[dict]:
+ aggregation_params: Optional[Dict] = None,
+ ) -> List[Dict]:
25
"""Perform an aggregation on a STAC collection.
26
27
Args:
0 commit comments