Don't use the format detail if it maps directly

This commit is contained in:
Mouse Reeve
2021-09-29 12:29:17 -07:00
parent 123b23728f
commit 0aef011258
2 changed files with 10 additions and 2 deletions

View File

@ -326,3 +326,11 @@ def infer_physical_format(format_text):
if not matches:
return None
return matches[0]
def unique_physical_format(format_text):
""" only store the format if it isn't diretly in the format mappings"""
format_text = format_text.lower()
if format_text in format_mappings:
# try a direct match, so saving this would be redundant
return None
return format_text