Can DaVinci issue a warning or error based on how people configure their Functors for tupling?

Follow up from lhcb-datapkg/AnalysisProductions@b7d54ca8 (comment 8197253)

If a user tuple :

        "MIN_BPVIP": F.MAX(F.BPVIP(v2_pvs)),
        "MAX_BPVIP": F.MAX(F.BPVIP(v2_pvs)),

But it should have been

        "MIN_BPVIP": F.MIN(F.BPVIP(v2_pvs)),
        "MAX_BPVIP": F.MAX(F.BPVIP(v2_pvs)),

, DaVinci is not failing, but keeps going. It might help analysts to avoid mistakes in their own tupling.