Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ahamelers committed Sep 26, 2023
1 parent 109cec4 commit 554b821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/py-frictionless/lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def lambda_handler(event, context):
update(token=event["token"], status='noissues', report=json.dumps({'report': ''}), callback=event['callback_url'])
return report
else:
detector = Detector(field_missing_values="na,n/a,.,none,NA,N/A,N.A.,n.a.,-,empty,blank".split(","))
detector = Detector(field_missing_values="na,n/a,.,none,NA,N/A,N.A.,n.a.,-,empty,blank".split(","), field_type='any')
try:
report = validate(event["download_url"], "resource", detector=detector, limit_errors=10)
except Exception as e:
Expand Down

0 comments on commit 554b821

Please sign in to comment.