I have a list of elements and I need to see if `None` is part of that list, so I do ``` None in elements ``` But if elements contains an awkward.Table I get an `AssertionError`: ``` None in [awkward.Table({}), None] ``` I would like to be able to use `in` even for lists sometimes containing Tables.
I have a list of elements and I need to see if
Noneis part of that list, so I doBut if elements contains an awkward.Table I get an
AssertionError:I would like to be able to use
ineven for lists sometimes containing Tables.