Merge pull request #2674 from haosenwang1018/fix/bare-excepts

fix: replace 29 bare except clauses with except Exception
This commit is contained in:
zhayujie
2026-02-26 12:11:49 +08:00
committed by GitHub
20 changed files with 29 additions and 29 deletions

View File

@@ -509,7 +509,7 @@ class MemoryStorage:
"""Destructor to ensure connection is closed"""
try:
self.close()
except:
except Exception:
pass # Ignore errors during cleanup
# Helper methods