Skip to content

Commit

Permalink
note
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Nov 7, 2023
1 parent 2d2ca03 commit 345f849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hdmf/common/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def __gather_columns(cls, name, bases, classdict):
new_columns[0:0] = item.__columns__ # prepend superclass columns to new_columns
cls.__columns__ = tuple(new_columns)
break
except AttributeError:
except AttributeError: # raises error when "__columns__" is not an attr of item
continue

@docval({'name': 'name', 'type': str, 'doc': 'the name of this table'}, # noqa: C901
Expand Down

0 comments on commit 345f849

Please sign in to comment.