Okay, and, thank you. Appreciate it.
Think you could flatten quite a few nested IF statements by using AND/OR conditionals, like so:
IF a AND b AND c AND d:
. . do()
ELIF a AND b AND c:
. . dont()
ELIF a AND b:
. . warn()
etc.
Unrelated to the match statement, I am not used to declaring variables. Seems optional in some cases from what I read in the docs, in order to speed things up a bit, but still a foreign concept coming from Python. Having trouble grasping the concept of ENUM, too.