cadquery
                                
                                 cadquery copied to clipboard
                                
                                    cadquery copied to clipboard
                            
                            
                            
                        Hole not at the current workplane
The following
a = Workplane("XY")
a = a.box(9, 20, 4)
a = a.faces("<Y")
a = a.workplane()
a = a.rect(4,4).extrude(13)
a = a.faces(">X")
a = a.hole(2)
generates
in which the hole is rotated 90 degrees from the current workplane.
Is this a bug or am I doing something incorrect?