import cadquery as Cq def mystery(): return ( Cq.Workplane("XY") .box(10, 5, 5) .faces(">Z") .workplane() .hole(1) .edges("|Z") .fillet(2) )