Skip to content

Commit

Permalink
Fixed paths for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abodeuis committed Jul 31, 2024
1 parent 596bbf3 commit 3dfa6ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cdrhook/convert.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from typing import List
from cdr_endpoint_schemas import CogMetadataSchema
from .cdr_endpoint_schemas import CogMetadataSchema
from cdr_schemas.cdr_responses.legend_items import LegendItemResponse
from cdr_schemas.cdr_responses.area_extractions import AreaExtractionResponse
from cmaas_utils.types import Legend, MapUnit, MapUnitType, Layout, CMAAS_MapMetadata, Provenance
Expand Down
4 changes: 2 additions & 2 deletions cdrhook/retrieve.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import requests
from typing import List
from pydantic import BaseModel
from connector import CdrConnector
from 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 @@ -16,9 +16,9 @@
from typing import Optional
from concurrent.futures import ThreadPoolExecutor

import retrieve
import convert
from connector import CdrConnector
from . import retrieve
from . import convert
from .connector import CdrConnector
# from cmaas_utils.io import saveCMASSMap
from cmaas_utils.types import CMAAS_Map
from cdr_schemas.cdr_responses.area_extractions import AreaType
Expand Down

0 comments on commit 3dfa6ed

Please sign in to comment.