Finalized creation of generic submission types.

This commit is contained in:
lwark
2024-09-06 14:35:12 -05:00
parent 7f6a476cd7
commit 220c74a06d
5 changed files with 35 additions and 63 deletions

View File

@@ -675,7 +675,7 @@ class SubmissionType(BaseClass):
Returns:
List[str]: List of sheet names
"""
return ExcelFile(BytesIO(self.template_file)).sheet_names
return ExcelFile(BytesIO(self.template_file), engine="openpyxl").sheet_names
def set_template_file(self, filepath: Path | str):
"""