Skip to content

Commit d9acea5

Browse files
Shresth79fselmo
authored andcommitted
chore: fix typos
1 parent d7295c6 commit d9acea5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web3/providers/ipc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_ipc_socket(ipc_path: str, timeout: float = 2.0) -> socket.socket:
5959
return sock
6060

6161

62-
class PersistantSocket:
62+
class PersistentSocket:
6363
sock = None
6464

6565
def __init__(self, ipc_path: str) -> None:
@@ -157,7 +157,7 @@ def __init__(
157157

158158
self.timeout = timeout
159159
self._lock = threading.Lock()
160-
self._socket = PersistantSocket(self.ipc_path)
160+
self._socket = PersistentSocket(self.ipc_path)
161161

162162
def __str__(self) -> str:
163163
return f"<{self.__class__.__name__} {self.ipc_path}>"

0 commit comments

Comments
 (0)