From 1d7fd832f475d608555a10c397d262b49263bd55 Mon Sep 17 00:00:00 2001 From: Matthew Avaylon Date: Mon, 6 Nov 2023 20:44:03 -0800 Subject: [PATCH] Update table.py Co-authored-by: Ryan Ly --- src/hdmf/common/table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hdmf/common/table.py b/src/hdmf/common/table.py index 595f74905..e6f492022 100644 --- a/src/hdmf/common/table.py +++ b/src/hdmf/common/table.py @@ -279,7 +279,7 @@ def __gather_columns(cls, name, bases, classdict): raise TypeError(msg) if len(bases) and 'DynamicTable' in globals(): - for item in bases[::-1]: # reverse the bases tuple as the code suggest it should be last + for item in bases[::-1]: # look for __columns__ in the base classes, closest first if issubclass(item, Container): try: if item.__columns__ is not cls.__columns__: