Skip to content

Commit

Permalink
Fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cburgdorf committed Dec 20, 2019
1 parent 93afdbe commit 4b61fb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ssz/sedes/serializable.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import abc
import collections
import collections.abc
import copy
import operator
import re
Expand Down Expand Up @@ -67,7 +67,7 @@ def merge_args_to_kwargs(args, kwargs, arg_names):
yield name, value


class BaseSerializable(collections.Sequence):
class BaseSerializable(collections.abc.Sequence):
cache = None

def __init__(self, *args, cache=None, **kwargs):
Expand Down

0 comments on commit 4b61fb9

Please sign in to comment.