Python formatting

This commit is contained in:
Mouse Reeve 2021-09-29 12:38:31 -07:00
parent 0aef011258
commit 32391dd64d
4 changed files with 16 additions and 6 deletions

View file

@ -314,8 +314,9 @@ class Mapping:
except: # pylint: disable=bare-except
return None
def infer_physical_format(format_text):
""" try to figure out what the standardized format is from the free value """
"""try to figure out what the standardized format is from the free value"""
format_text = format_text.lower()
if format_text in format_mappings:
# try a direct match
@ -327,8 +328,9 @@ def infer_physical_format(format_text):
return None
return matches[0]
def unique_physical_format(format_text):
""" only store the format if it isn't diretly in the format mappings"""
"""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

View file

@ -8,7 +8,7 @@ from .connector_manager import ConnectorException
class Connector(AbstractConnector):
"""instantiate a connector for OL"""
"""instantiate a connector for inventaire"""
def __init__(self, identifier):
super().__init__(identifier)

View file

@ -43,8 +43,16 @@ class Connector(AbstractConnector):
),
Mapping("publishedDate", remote_field="publish_date"),
Mapping("pages", remote_field="number_of_pages"),
Mapping("physicalFormat", remote_field="physical_format", formatter=infer_physical_format),
Mapping("physicalFormatDetail", remote_field="physical_format", formatter=unique_physical_format),
Mapping(
"physicalFormat",
remote_field="physical_format",
formatter=infer_physical_format,
),
Mapping(
"physicalFormatDetail",
remote_field="physical_format",
formatter=unique_physical_format,
),
Mapping("publishers"),
]

View file

@ -27,7 +27,7 @@ def reverse(app_registry, schema_editor):
class Migration(migrations.Migration):
dependencies = [
('bookwyrm', '0100_shelf_description'),
("bookwyrm", "0100_shelf_description"),
]
operations = [