We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d802104 commit 5025245Copy full SHA for 5025245
1 file changed
src/folio_migration_tools/mapper_base.py
@@ -554,11 +554,11 @@ def base_string_for_folio_uuid(self):
554
self.library_configuration.use_gateway_url_for_uuids
555
and not self.library_configuration.is_ecs
556
):
557
- return str(self.folio_client.gateway_url)
+ return self.folio_client.gateway_url
558
elif self.library_configuration.ecs_tenant_id:
559
- return str(self.library_configuration.ecs_tenant_id)
+ return self.library_configuration.ecs_tenant_id
560
else:
561
- return str(self.library_configuration.tenant_id)
+ return self.library_configuration.tenant_id
562
563
@staticmethod
564
def validate_location_map(location_map: List[Dict], locations: List[Dict]) -> List[Dict]:
0 commit comments