From ef960ae94dde1662a89eb46a1bddd4a2a0bdcb09 Mon Sep 17 00:00:00 2001 From: IanCa Date: Thu, 11 Jul 2024 18:55:23 -0500 Subject: [PATCH] fix typo --- hed/schema/schema_io/df2schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hed/schema/schema_io/df2schema.py b/hed/schema/schema_io/df2schema.py index e49bd62e..13ffb473 100644 --- a/hed/schema/schema_io/df2schema.py +++ b/hed/schema/schema_io/df2schema.py @@ -140,7 +140,7 @@ def _read_schema(self, dataframe): self._schema._initialize_attributes(HedSectionKey.Tags) known_parent_tags = {"HedTag": []} iterations = 0 - # Handle this over multiple iterations incase tags have parent tags listed later in the file. + # Handle this over multiple iterations in case tags have parent tags listed later in the file. # A properly formatted .tsv file will never have parents after the child. current_rows = list(dataframe[constants.TAG_KEY].iterrows()) while current_rows: