Skip to content

Commit 85b7432

Browse files
author
Andrzej Pijanowski
committed
fix: remove unused redis_utils import to fix flake8 errors
1 parent 524f9f9 commit 85b7432

File tree

1 file changed

+1
-2
lines changed
  • stac_fastapi/core/stac_fastapi/core

1 file changed

+1
-2
lines changed

stac_fastapi/core/stac_fastapi/core/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
QueryablesCache,
2929
get_properties_from_cql2_filter,
3030
)
31-
from stac_fastapi.core.redis_utils import redis_pagination_links
32-
from stac_fastapi.core.serializers import CollectionSerializer, ItemSerializer
3331
from stac_fastapi.core.serializers import (
3432
CatalogSerializer,
3533
CollectionSerializer,
@@ -101,6 +99,7 @@ class CoreClient(AsyncBaseCoreClient):
10199
def __attrs_post_init__(self):
102100
"""Initialize the queryables cache."""
103101
self.queryables_cache = QueryablesCache(self.database)
102+
104103
def extension_is_enabled(self, extension_name: str) -> bool:
105104
"""Check if an extension is enabled by checking self.extensions.
106105

0 commit comments

Comments
 (0)