src/graphing/plotting.py [68:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        gc_event_dataframes, group_by, filter_by, labels, column, colors, column_timing
    )
    # if no plot is passed in, create a new plot
    if not plot:
        f, plot = plt.subplots()
    if len(datapoint_groups) > len(labels):
        print("Not enough labels to plot")
    if len(datapoint_groups) > len(colors):
        print("Not enough colors to plot")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/graphing/plotting.py [138:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        gc_event_dataframes, group_by, filter_by, labels, column, colors, column_timing
    )
    # if no plot is passed in, create a new plot
    if not plot:
        f, plot = plt.subplots()
    if len(datapoint_groups) > len(labels):
        print("Not enough labels to plot")
    if len(datapoint_groups) > len(colors):
        print("Not enough colors to plot")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



