Skip to content

Commit 6abf213

Browse files
stringray55cburgdorf
authored andcommitted
Replace cytoolz with eth_utils.toolz
1 parent 7f93bcc commit 6abf213

File tree

34 files changed

+54
-58
lines changed

34 files changed

+54
-58
lines changed

eth/_utils/datatypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from cytoolz import (
1+
from eth_utils.toolz import (
22
assoc,
33
groupby,
44
)

eth/_utils/numeric.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Union,
66
)
77

8-
from cytoolz import (
8+
from eth_utils.toolz import (
99
curry,
1010
)
1111
from eth_typing import (

eth/_utils/padding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from cytoolz import (
1+
from eth_utils.toolz import (
22
curry,
33
)
44

eth/_utils/rlp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Tuple,
88
)
99

10-
from cytoolz import (
10+
from eth_utils.toolz import (
1111
curry,
1212
)
1313

eth/_utils/spoof.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Union,
55
)
66

7-
from cytoolz import (
7+
from eth_utils.toolz import (
88
merge,
99
)
1010

eth/chains/tester/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Union,
1010
)
1111

12-
from cytoolz import (
12+
from eth_utils.toolz import (
1313
assoc,
1414
last,
1515
)

eth/db/header.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import rlp
66

7-
from cytoolz import (
7+
from eth_utils.toolz import (
88
concat,
99
first,
1010
sliding_window,

eth/db/journal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from typing import cast, Dict, Union # noqa: F401
33
import uuid
44

5-
from cytoolz import (
5+
from eth_utils.toolz import (
66
first,
77
merge,
88
last,

eth/precompiles/ecpairing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from typing import Tuple
22

3-
from cytoolz import (
3+
from eth_utils.toolz import (
44
curry,
55
pipe,
66
)

eth/tools/_utils/mappings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Sequence,
88
)
99

10-
from cytoolz import merge_with
10+
from eth_utils.toolz import merge_with
1111

1212

1313
def merge_if_dicts(values: Sequence[Dict[Any, Any]]) -> Any:

0 commit comments

Comments
 (0)