fix(mbal): replace bare except with except Exception
This commit is contained in:
parent
8ee7cfb148
commit
05a81c0d4d
1 changed files with 1 additions and 1 deletions
|
|
@ -255,7 +255,7 @@ class MBALService:
|
|||
try:
|
||||
response = await self.client.get(f"{self.base_url}/health")
|
||||
return response.status_code == 200
|
||||
except: # noqa: E722
|
||||
except Exception:
|
||||
return False
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue