Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Mypy fix
  • Loading branch information
adam-urbanczyk committed Dec 6, 2024
commit 1b67a718412e0d06c462ea5c5fa189baecc9fecb
4 changes: 3 additions & 1 deletion cadquery/vis.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ def _to_assy(*objs: ShapeLike, alpha: float = 1) -> Assembly:
return assy


def _split_showables(objs) -> Tuple[List[ShapeLike], List[Vector], List[Location]]:
def _split_showables(
objs,
) -> Tuple[List[ShapeLike], List[Vector], List[Location], List[vtkActor]]:
"""
Split into showables and others.
"""
Expand Down