fixing imports

This commit is contained in:
Ian 'z0r0' Abreu
2025-07-20 09:04:27 -04:00
parent 2e3e05e270
commit f8fe935932
9 changed files with 40 additions and 54 deletions

View File

@@ -1,7 +1,9 @@
from typing import Any
from App import object
from Base.Metadata import export
from App.DocumentObject import DocumentObject
@export(
Father="DocumentObjectPy",
Name="FeaturePathCompoundPy",
@@ -12,7 +14,7 @@ from Base.Metadata import export
FatherInclude="App/DocumentObjectPy.h",
FatherNamespace="App",
)
class FeaturePathCompoundPy(object):
class FeaturePathCompoundPy(DocumentObject):
"""
This class handles Path Compound features
"""