Skip to content

Commit

Permalink
Merge branch 'wrapper' of https://github.com/hdmf-dev/hdmf into wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Sep 27, 2023
2 parents 03a51cf + da1b006 commit 8fa4a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hdmf/data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def append_data(data, arg):
if isinstance(data, (list, DataIO)):
data.append(arg)
return data
elif type(data).__name__ == 'TermSetWrapper': # circular import
elif type(data).__name__ == 'TermSetWrapper': # circular import
data.append(arg)
return data
elif isinstance(data, np.ndarray):
Expand Down

0 comments on commit 8fa4a9a

Please sign in to comment.