import cadquery as cq
from math import pi as pi, sin as sin, cos as cos, atan as atan
sabot = cq.Workplane("XY" ) \
.ellipseArc(x_radius = 110, y_radius = 110, angle1 = 0, angle2 = 70, sense = -1, startAtCurrent = False) \
.line(30, 0) \
.center(0, 0) \
.ellipseArc(x_radius = 140, y_radius = 140, angle1 = 0, angle2 = 70, sense = 1, startAtCurrent = False) \
.close() \
.extrude(50) \
.faces("<Z").workplane().tag("baseplaneSabot") \
.workplaneFromTagged("baseplaneSabot").transformed(rotate=(5, 0, 0)).split(keepBottom=True).faces(">Z").workplane().tag("PlanSabotDepouille")
sabot = sabot.workplaneFromTagged("baseplaneSabot").transformed(rotate=(40, 0, 0)).split(keepTop=True).faces(">Z").workplane().tag("PlanSabotAttaque")
sabot = sabot.workplaneFromTagged("baseplaneSabot").transformed(rotate=(40, 0, 0), offset=(0, 0, 40)).split(keepBottom=True)
sabot = sabot.workplaneFromTagged("PlanSabotDepouille").faces("<Z").wires().toPending().extrude(1000)
`````
Without the last line, I get:


With the last line, I want to extrude the blue face whose workplane is tagged "PlanSabotDepouille", but I get the error:
