Skip to content

Commit f9d6f73

Browse files
Apply suggestions from code review
1 parent ccfab4c commit f9d6f73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stac_fastapi/extensions/stac_fastapi/extensions/core/collection_search/collection_search.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def from_extensions(
9595
conf = supported_extensions.get(ext.__class__.__name__, None)
9696
if not conf:
9797
warnings.warn(
98-
f"{ext.__class__.__name__} extension not supported in `CollectionSearchExtension.from_extensions` method.", # noqa: E501
98+
f"Conformance class for `{ext.__class__.__name__}` extension not found.",
9999
UserWarning,
100100
)
101101
else:
@@ -203,7 +203,7 @@ def from_extensions(
203203
conf = supported_extensions.get(ext.__class__.__name__, None)
204204
if not conf:
205205
warnings.warn(
206-
f"{ext.__class__.__name__} extension not supported in `CollectionSearchExtension.from_extensions` method.", # noqa: E501
206+
f"Conformance class for `{ext.__class__.__name__}` extension not found.",
207207
UserWarning,
208208
)
209209
else:

0 commit comments

Comments
 (0)