Trying to fix fails on Windows

This commit is contained in:
Matthias Koefferlein 2023-10-19 23:03:46 +02:00
parent 1cf34b0ee9
commit b1d8234b61
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,8 @@ from klayout.pya import __all__
from klayout.pya import *
from klayout.db.pcell_declaration_helper import *
from klayout.db.pcell_declaration_helper import __all__ as _all_added1
__all__ += _all_added1
# establish the PCellDeclarationHelper using the mixin provided by _pcell_declaration_helper
class PCellDeclarationHelper(_PCellDeclarationHelperMixin, PCellDeclaration):
@ -19,3 +21,5 @@ for k in dir(PCellParameterDeclaration):
if k.startswith("Type"):
setattr(PCellDeclarationHelper, k, getattr(PCellParameterDeclaration, k))
__all__ += [ "PCellDeclarationHelper" ]