Skip to content

Commit

Permalink
relative import syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
asaxton committed Oct 17, 2024
1 parent 214fb7a commit cbf9c10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cdrhook/retrieve.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import List, Literal
from cdrhook.connector import CdrConnector
from cdrhook.cdr_endpoint_schemas import SystemId, CogSystemVersionsSchema, CogMetadataSchema, CogDownloadSchema
from connector import CdrConnector
from cdr_endpoint_schemas import SystemId, CogSystemVersionsSchema, CogMetadataSchema, CogDownloadSchema
from cdr_schemas.cdr_responses.area_extractions import AreaExtractionResponse
from cdr_schemas.cdr_responses.legend_items import LegendItemResponse
from cdr_schemas.map_results import MapResults
Expand Down
6 changes: 3 additions & 3 deletions cdrhook/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
from cmaas_utils.types import CMAAS_Map
from cdr_schemas.cdr_responses.area_extractions import AreaType

from cdrhook.retrieve import retrieve_cog_area_extraction, retrieve_cog_legend_items, retrieve_cog_system_versions, retrieve_cog_download
from cdrhook.connector import CdrConnector
from cdrhook.cdr_endpoint_schemas import SystemId
from retrieve import retrieve_cog_area_extraction, retrieve_cog_legend_items, retrieve_cog_system_versions, retrieve_cog_download
from connector import CdrConnector
from cdr_endpoint_schemas import SystemId


auth = HTTPBasicAuth()
Expand Down

0 comments on commit cbf9c10

Please sign in to comment.