Remove print statement in map

This commit is contained in:
anjor
2024-09-03 10:09:52 +01:00
committed by Gergő Móricz
parent b8b8522b33
commit c45a132cd5
+1 -1
View File
@@ -238,7 +238,7 @@ class FirecrawlApp:
if response.status_code == 200: if response.status_code == 200:
response = response.json() response = response.json()
if response['success'] and 'links' in response: if response['success'] and 'links' in response:
return response['links'] return response
else: else:
raise Exception(f'Failed to map URL. Error: {response["error"]}') raise Exception(f'Failed to map URL. Error: {response["error"]}')
else: else: