fix(filter): remove redundant TypeError from except clause
This commit is contained in:
parent
0d1f8992bc
commit
c18cdfa732
1 changed files with 1 additions and 1 deletions
|
|
@ -891,7 +891,7 @@ from {tables}
|
|||
try:
|
||||
parsed = json.loads(values)
|
||||
values = parsed if isinstance(parsed, list) else [parsed]
|
||||
except (ValueError, TypeError):
|
||||
except ValueError:
|
||||
values = values.split(",")
|
||||
|
||||
fallback = "''"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue