Skip to content

Commit 1fb3f9c

Browse files
committed
Fix failing ci
Signed-off-by: sukhman <[email protected]>
1 parent 8afb99c commit 1fb3f9c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/utils/utils.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
from unittest.mock import MagicMock
1+
from unittest.mock import (
2+
MagicMock,
3+
)
4+
25

36
def create_mock_connections() -> dict:
47
connections = {}
@@ -8,4 +11,4 @@ def create_mock_connections() -> dict:
811
mock_conn = MagicMock(name=f"INetConn-{i}")
912
connections[peer_id] = mock_conn
1013

11-
return connections
14+
return connections

0 commit comments

Comments
 (0)