Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
mristin committed May 8, 2024
1 parent d665440 commit f90f76f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aas_core_codegen/parse/retree/_parse.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Parse a regular expression defined over a possibly-formatted string."""
import collections
import collections.abc
import io
import math
import re
Expand Down Expand Up @@ -97,7 +97,7 @@ class Cursor:
# as a string during development, causing an unnecessary long debugging session.
@require(
lambda values:
isinstance(values, collections.Sequence),
isinstance(values, collections.abc.Sequence),
"values must be a sequence"
)
# fmt: on
Expand Down

0 comments on commit f90f76f

Please sign in to comment.