Pre-refactor

This commit is contained in:
Landon Wark
2023-10-13 09:26:12 -05:00
parent 957edb814a
commit 80d77117e1
6 changed files with 41 additions and 16 deletions

View File

@@ -294,6 +294,19 @@ class BasicSubmission(Base):
Workbook: updated workbook
"""
return input_excel
@classmethod
def enforce_naming_schema(cls, input_str:str) -> str:
"""
Used to ensure proper custom naming of submission.
Args:
input_str (str): name parsed by default parser
Returns:
str: custom parser output.
"""
return input_str
# Below are the custom submission types