From 551b56ef656f4fa010f4380a7914f3cd8f8d647c Mon Sep 17 00:00:00 2001 From: mavaylon1 Date: Wed, 19 Feb 2025 10:51:16 -0800 Subject: [PATCH] spelling is hard --- 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 42af209a4..309c66181 100644 --- a/src/hdmf/common/table.py +++ b/src/hdmf/common/table.py @@ -206,7 +206,7 @@ def get(self, arg, **kwargs): if len(indices) > 0: # Note: len(indices) == 0 for test_to_hierarchical_dataframe_empty_tables. # This is an edge case test for to_hierarchical_dataframe() on empty tables. - # When len(indices) == 0, ret is expected to be an empty list, defiend above. + # When len(indices) == 0, ret is expected to be an empty list, defined above. try: data = self.target.get(slice(None), **kwargs) slices = [self.__get_slice(i) for i in indices]