File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 44
44
45
45
PATH_DELIM = "/"
46
46
47
- # entity selector grammar definiiton
47
+ # entity selector grammar definition
48
48
def _define_grammar ():
49
49
50
50
from pyparsing import (
@@ -385,7 +385,7 @@ def solve(self, verbosity: int = 0) -> "Assembly":
385
385
] not in locked :
386
386
locked .append (ents [name ])
387
387
388
- # Lock the first occuring entity if needed.
388
+ # Lock the first occurring entity if needed.
389
389
if not locked :
390
390
unary_objects = [
391
391
c .objects [0 ]
@@ -402,7 +402,7 @@ def solve(self, verbosity: int = 0) -> "Assembly":
402
402
locked .append (ents [b ])
403
403
break
404
404
405
- # Lock the first occuring entity if needed.
405
+ # Lock the first occurring entity if needed.
406
406
if not locked :
407
407
locked .append (0 )
408
408
Original file line number Diff line number Diff line change @@ -3461,7 +3461,7 @@ def cutBlind(
3461
3461
# Handling of `until` passed values
3462
3462
s : Union [Compound , Solid , Shape ]
3463
3463
if isinstance (both , float ) and taper == None :
3464
- # Because inserting a new paramater "both" in front of "taper",
3464
+ # Because inserting a new parameter "both" in front of "taper",
3465
3465
# existing code calling this function with position arguments will
3466
3466
# pass the taper argument (float) to the "both" argument. This
3467
3467
# warning is to catch that.
@@ -3592,7 +3592,7 @@ def _extrude(
3592
3592
Make a prismatic solid from the existing set of pending wires.
3593
3593
3594
3594
:param distance: distance to extrude
3595
- :param both: extrude in both directions symetrically
3595
+ :param both: extrude in both directions symmetrically
3596
3596
:param upToFace: if specified, extrude up to a face: 0 for the next, -1 for the last face
3597
3597
:param additive: specify if extruding or cutting, required param for uptoface algorithm
3598
3598
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ dependencies:
16
16
- pytest
17
17
- pytest-cov
18
18
- ezdxf
19
- - ipython
20
19
- typing_extensions
21
20
- nptyping=2.0.1
22
21
- nlopt
You can’t perform that action at this time.
0 commit comments