Upgrade of editting functions.

This commit is contained in:
Landon Wark
2024-03-12 15:16:47 -05:00
parent badf6e21c8
commit 7cc9dd64c3
6 changed files with 105 additions and 52 deletions

View File

@@ -1,6 +1,7 @@
# __init__.py
from pathlib import Path
from tools import CustomFormatter
# Version of the realpython-reader package
__project__ = "submissions"
@@ -10,16 +11,7 @@ __copyright__ = "2022-2024, Government of Canada"
project_path = Path(__file__).parents[2].absolute()
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
bcolors = CustomFormatter.bcolors()
# Hello Landon, this is your past self here. I'm trying not to screw you over like I usually do, so I will
# set out the workflow I've imagined for creating new submission types.