Skip to content

Commit 3489b18

Browse files
committed
Fixed linter
1 parent c98513f commit 3489b18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

whatsapp_api_client_python/response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __init__(self, code: Optional[int], text: str):
1212
if self.code == 200:
1313
try:
1414
self.data = loads(text)
15-
except:
15+
except Exception:
1616
self.data = "[]"
1717
else:
1818
self.error = text

0 commit comments

Comments
 (0)