Skip to content

Commit 3f528cb

Browse files
committed
Pull in most recent master
1 parent 59eef9c commit 3f528cb

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
@@ -85,7 +85,7 @@ def get_default_ipc_path():
8585
if os.path.exists(ipc_path):
8686
return ipc_path
8787

88-
base_trinity_path = Path('~').expanduser() / '.local' / 'share' / 'trinity'
88+
base_trinity_path = pathlib.Path('~').expanduser() / '.local' / 'share' / 'trinity'
8989
ipc_path = base_trinity_path / 'mainnet' / 'jsonrpc.ipc'
9090
if ipc_path.exists():
9191
return str(ipc_path)
@@ -109,7 +109,7 @@ def get_default_ipc_path():
109109
if os.path.exists(ipc_path):
110110
return ipc_path
111111

112-
base_trinity_path = Path('~').expanduser() / '.local' / 'share' / 'trinity'
112+
base_trinity_path = pathlib.Path('~').expanduser() / '.local' / 'share' / 'trinity'
113113
ipc_path = base_trinity_path / 'mainnet' / 'jsonrpc.ipc'
114114
if ipc_path.exists():
115115
return str(ipc_path)

0 commit comments

Comments
 (0)