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__: