Overhauled tagger.py

Added Ramp
Reorganized a number of functions
This commit is contained in:
mwisnowski 2024-12-16 22:58:02 -08:00
parent a469d5be4a
commit f0c00c4b2c
4 changed files with 2798 additions and 1364 deletions

View file

@ -10,9 +10,7 @@ def pluralize(word):
def sort_list(list_to_sort):
if isinstance(list_to_sort, list):
print(list_to_sort)
list_to_sort = sorted(list_to_sort)
print(list_to_sort)
return list_to_sort
else:
return list_to_sort