From 132c11ae8f5a24236ffc2d9256faf83afad7f396 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Sat, 16 May 2026 16:20:50 +0800 Subject: [PATCH] bugfix --- sqlor/dbpools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlor/dbpools.py b/sqlor/dbpools.py index dd1fefa..73b7982 100644 --- a/sqlor/dbpools.py +++ b/sqlor/dbpools.py @@ -108,7 +108,7 @@ class DBPools(EventDispatcher): def __init__(self,databases={},max_connect=100,loop=None): if loop is None: loop = get_event_loop() - super().__init__(self) + super().__init__() self.loop = loop self.max_connect = max_connect self._pools = {}