From f43710644ff135383310f5182946f1f7da6eb081 Mon Sep 17 00:00:00 2001 From: jpivarski Date: Thu, 29 Sep 2022 13:10:11 -0500 Subject: [PATCH] Same for the abstract superclasses. --- src/awkward/types/arraytype.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/awkward/types/arraytype.py b/src/awkward/types/arraytype.py index d053d03874..74b5253573 100644 --- a/src/awkward/types/arraytype.py +++ b/src/awkward/types/arraytype.py @@ -8,7 +8,7 @@ class ArrayType: def __init__(self, content, length): - if not isinstance(content, awkward.types.type.Type): + if not isinstance(content, ak.types.Type): raise ak._errors.wrap_error( TypeError( "{} all 'contents' must be Type subclasses, not {}".format(