We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7514919 commit fae2755Copy full SHA for fae2755
adafruit_wiznet5k/adafruit_wiznet5k_socketpool.py
@@ -57,7 +57,7 @@ class SocketPool(SocketPoolContants):
57
def __new__(cls, iface: WIZNET5K):
58
# We want to make sure to return the same pool for the same interface
59
if iface not in _global_socketpool:
60
- _global_socketpool[iface] = object.__new__(cls)
+ _global_socketpool[iface] = super().__new__(cls)
61
return _global_socketpool[iface]
62
63
def __init__(self, iface: WIZNET5K):
0 commit comments