Skip to content

Commit

Permalink
FIX: PinGroup inheritance (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiro727 authored Feb 1, 2024
1 parent 5fa284c commit a4ced1a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ansys/edb/core/hierarchy/pin_group.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
"""Pin group."""

from ansys.edb.core.edb_defs import LayoutObjType
from ansys.edb.core.inner import ObjBase, messages
from ansys.edb.core.inner import messages
from ansys.edb.core.inner.conn_obj import ConnObj
from ansys.edb.core.primitive import PadstackInstance
from ansys.edb.core.session import StubAccessor, StubType


class PinGroup(ObjBase):
class PinGroup(ConnObj):
"""Represents a pin group object."""

__stub = StubAccessor(StubType.pin_group)
Expand Down

0 comments on commit a4ced1a

Please sign in to comment.