We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35fd193 commit 06281a5Copy full SHA for 06281a5
adafruit_esp32spi/adafruit_esp32spi_socketpool.py
@@ -46,7 +46,7 @@ class SocketPool(SocketPoolContants):
46
def __new__(cls, iface: ESP_SPIcontrol):
47
# We want to make sure to return the same pool for the same interface
48
if iface not in _global_socketpool:
49
- _global_socketpool[iface] = object.__new__(cls)
+ _global_socketpool[iface] = super().__new__(cls)
50
return _global_socketpool[iface]
51
52
def __init__(self, iface: ESP_SPIcontrol):
0 commit comments