Don't use the format detail if it maps directly
This commit is contained in:
parent
123b23728f
commit
0aef011258
2 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue