Skip to content

Commit ee96ca7

Browse files
committed
black fix
1 parent e2108d2 commit ee96ca7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

cadquery/cq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3041,7 +3041,7 @@ def extrude(
30413041
and the resulting solid becomes the new context solid.
30423042
"""
30433043
if combine == "cut":
3044-
self.cutBlind(until,clean,taper)
3044+
return self.cutBlind(until, clean, taper)
30453045
else:
30463046
# Handle `until` multiple values
30473047
if isinstance(until, str) and until in ("next", "last") and combine:

cadquery/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,3 @@ def wrapped(*args, **kwargs):
7070
return f(*args, **kwargs)
7171

7272
return wrapped
73-

0 commit comments

Comments
 (0)