Skip to content
Snippets Groups Projects
Commit 8b5f4a0c authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Merge branch 'fix-sdm-only' into 'main'

fix sdm only to include .bin files

See merge request !1434
parents 3ce7cf41 011a45cc
No related branches found
No related tags found
1 merge request!1434fix sdm only to include .bin files
Pipeline #11409 canceled
......@@ -208,7 +208,8 @@ class NgasFile(LocatedFile):
@property
def is_sdm(self) -> bool:
return self.ngas_file_id.endswith(".sdm")
# SDM files can end with .sdm or .bin. Include both
return self.ngas_file_id.endswith(".sdm") or self.ngas_file_id.endswith(".bin")
@property
def is_image_ancillary(self) -> bool:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment