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 fafd842 commit 124a0e6Copy full SHA for 124a0e6
pystac_client/conformance.py
@@ -42,7 +42,8 @@ class ConformanceClasses(Enum):
42
QUERY = 'item-search#query'
43
FILTER = 'item-search#filter'
44
45
-CONFORMANCE_URIS = {c.name: [f"{p}/{c.value}" for p in STAC_PREFIXES] for c in ConformanceClasses }
+
46
+CONFORMANCE_URIS = {c.name: [f"{p}/{c.value}" for p in STAC_PREFIXES] for c in ConformanceClasses}
47
48
49
class ConformanceMixin:
pystac_client/item_search.py
@@ -2,7 +2,6 @@
2
from dateutil.relativedelta import relativedelta
3
import json
4
import re
5
-import logging
6
from collections.abc import Iterable, Mapping
7
from copy import deepcopy
8
from datetime import timezone, datetime as datetime_
0 commit comments