fix(mbal): replace bare except with except Exception

This commit is contained in:
Crypto Rug Munch 2026-07-08 07:19:39 +02:00
parent 8ee7cfb148
commit 05a81c0d4d

View file

@ -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