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 d9ec3b4 commit df07723Copy full SHA for df07723
scraper/src/meilisearch_helper.py
@@ -8,9 +8,7 @@ def remove_bad_encoding(value):
8
return value.replace(''', "'")
9
10
def clean_one_field(value):
11
- if value is None:
12
- return 'null'
13
- elif isinstance(value, bool):
+ if isinstance(value, bool):
14
return str(value)
15
elif isinstance(value, str):
16
return remove_bad_encoding(value)
0 commit comments