prior to db rebuild

This commit is contained in:
Landon Wark
2023-07-26 14:05:52 -05:00
parent 82dffe3af2
commit f22e697815
11 changed files with 76 additions and 53 deletions

View File

@@ -136,7 +136,8 @@ def check_if_app(ctx:dict=None) -> bool:
def retrieve_rsl_number(in_str:str) -> Tuple[str, str]:
"""
Uses regex to retrieve the plate number and submission type from an input string
DEPRECIATED. REPLACED BY RSLNamer.parsed_name
Args:
in_str (str): string to be parsed
@@ -354,7 +355,7 @@ class Settings(BaseSettings):
super_users: list
power_users: list
rerun_regex: str
submission_types: dict
submission_types: dict|None = None
database_session: Session|None = None
package: Any|None = None
@@ -609,4 +610,4 @@ def jinja_template_loading():
# jinja template loading
loader = FileSystemLoader(loader_path)
env = Environment(loader=loader)
return env
return env