From e7bfb89c2fd01ed8dd4de1097dee8d57ced07508 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Tue, 16 May 2023 22:48:06 +0200 Subject: [PATCH] Corrected usage of Object to Obj. --- pyVHDLModel/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyVHDLModel/__init__.py b/pyVHDLModel/__init__.py index 21f29f112..9f8953b11 100644 --- a/pyVHDLModel/__init__.py +++ b/pyVHDLModel/__init__.py @@ -48,7 +48,7 @@ __email__ = "Paebbels@gmail.com" __copyright__ = "2016-2023, Patrick Lehmann" __license__ = "Apache License, Version 2.0" -__version__ = "0.25.2" +__version__ = "0.26.0" from enum import unique, Enum, Flag, auto @@ -64,7 +64,7 @@ from pyVHDLModel.Exception import ArchitectureExistsInLibraryError, PackageExistsInLibraryError, PackageBodyExistsError, ConfigurationExistsInLibraryError from pyVHDLModel.Exception import ContextExistsInLibraryError, ReferencedLibraryNotExistingError from pyVHDLModel.Base import ModelEntity, NamedEntityMixin, DocumentedEntityMixin -from pyVHDLModel.Object import Signal +from pyVHDLModel.Object import Obj, Signal from pyVHDLModel.Symbol import AllPackageMembersReferenceSymbol, PackageMemberReferenceSymbol from pyVHDLModel.Concurrent import EntityInstantiation, ComponentInstantiation, ConfigurationInstantiation from pyVHDLModel.DesignUnit import DesignUnit, PrimaryUnit, Architecture, PackageBody, Context, Entity, Configuration, Package @@ -403,7 +403,7 @@ class Design(ModelEntity): _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. _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. _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. - _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. + _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. _toplevel: Union[Entity, Configuration] #: When computed, the toplevel design unit is cached in this field. def __init__(self, name: str = None):