Skip to content

Commit e7bfb89

Browse files
committed
Corrected usage of Object to Obj.
1 parent 2816aeb commit e7bfb89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyVHDLModel/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
__email__ = "[email protected]"
4949
__copyright__ = "2016-2023, Patrick Lehmann"
5050
__license__ = "Apache License, Version 2.0"
51-
__version__ = "0.25.2"
51+
__version__ = "0.26.0"
5252

5353

5454
from enum import unique, Enum, Flag, auto
@@ -64,7 +64,7 @@
6464
from pyVHDLModel.Exception import ArchitectureExistsInLibraryError, PackageExistsInLibraryError, PackageBodyExistsError, ConfigurationExistsInLibraryError
6565
from pyVHDLModel.Exception import ContextExistsInLibraryError, ReferencedLibraryNotExistingError
6666
from pyVHDLModel.Base import ModelEntity, NamedEntityMixin, DocumentedEntityMixin
67-
from pyVHDLModel.Object import Signal
67+
from pyVHDLModel.Object import Obj, Signal
6868
from pyVHDLModel.Symbol import AllPackageMembersReferenceSymbol, PackageMemberReferenceSymbol
6969
from pyVHDLModel.Concurrent import EntityInstantiation, ComponentInstantiation, ConfigurationInstantiation
7070
from pyVHDLModel.DesignUnit import DesignUnit, PrimaryUnit, Architecture, PackageBody, Context, Entity, Configuration, Package
@@ -403,7 +403,7 @@ class Design(ModelEntity):
403403
_dependencyGraph: Graph[None, None, None, None, None, None, None, None, str, DesignUnit, None, None, None, None, None, None, None, None, None, None, None, None, None] #: The graph of all dependencies in the designs.
404404
_compileOrderGraph: Graph[None, None, None, None, None, None, None, None, None, 'Document', None, None, None, None, None, None, None, None, None, None, None, None, None] #: A graph derived from dependency graph containing the order of documents for compilation.
405405
_hierarchyGraph: Graph[None, None, None, None, None, None, None, None, str, DesignUnit, None, None, None, None, None, None, None, None, None, None, None, None, None] #: A graph derived from dependency graph containing the design hierarchy.
406-
_objectGraph: Graph[None, None, None, None, None, None, None, None, str, Object, None, None, None, None, None, None, None, None, None, None, None, None, None] #: The graph of all types and objects in the design.
406+
_objectGraph: Graph[None, None, None, None, None, None, None, None, str, Obj, None, None, None, None, None, None, None, None, None, None, None, None, None] #: The graph of all types and objects in the design.
407407
_toplevel: Union[Entity, Configuration] #: When computed, the toplevel design unit is cached in this field.
408408

409409
def __init__(self, name: str = None):

0 commit comments

Comments
 (0)