roarin-roran / Sorting

0 stars 0 forks source link

option codes should be meaningful #49

Closed roarin-roran closed 2 years ago

roarin-roran commented 2 years ago

replace single digit option codes with short strings

will require more robust file readers - current methods only support a single digit, new methods will have to be able to read the whole line

sebawild commented 2 years ago

Sounds like the ideal use case for enums: https://docs.python.org/3/library/enum.html

roarin-roran commented 2 years ago

solved(with enums)