Source code for src.utils.get_split

"""Get the split of the workout.
"""

from enum import Enum, unique


[docs] @unique class Split(Enum): CHEST = 1 BACK = 2 LEGS = 3