9 lines
222 B
Python
9 lines
222 B
Python
![]() |
from repository.freecad_repository import FreeCadRepository
|
||
|
|
||
|
|
||
|
class GetFirstDetailUseCase:
|
||
|
"""Get label of first part in tree assembly"""
|
||
|
|
||
|
def call(self):
|
||
|
return FreeCadRepository().getAllSolids()[0].Label
|