mirror of https://github.com/KLayout/klayout.git
Trying to fix fails on Windows
This commit is contained in:
parent
1cf34b0ee9
commit
b1d8234b61
|
|
@ -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" ]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue