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.
''
data.csv.parse()
1 parent 0dc74b1 commit 3cbd957Copy full SHA for 3cbd957
2 files changed
remove-json-keys/src/remove_json_keys/lib/data/csv.py
@@ -1,3 +1,3 @@
1
def parse(val: str) -> list[str]:
2
if not val : return []
3
- return [item.strip() for item in val.split(',')]
+ return [item.strip() for item in val.split(',') if item.strip()]
translate-messages/src/translate_messages/lib/data/csv.py
0 commit comments