Skip to content

Commit

Permalink
Ignore type error to be fixed later when doing mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
Lincoln-GR committed Jan 13, 2025
1 parent d540037 commit bb4580f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abis_mapping/templates/survey_site_data_v3/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def apply_mapping_row(
# TERN.Site subject IRI - Note this needs to match the iri construction of the
# survey site visit and occurrence template mapping, ensuring they will resolve properly.
site_id: str | None = row["siteID"]
site = utils.iri_patterns.site_iri(base_iri, site_id)
site = utils.iri_patterns.site_iri(base_iri, site_id) # type: ignore[arg-type] # TODO fix when doing mapping

# Conditionally create uris dependent on siteIDSource
site_id_src: str | None = row["siteIDSource"]
Expand Down

0 comments on commit bb4580f

Please sign in to comment.