Skip to content

Commit

Permalink
Corrected usage of Object to Obj.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed May 16, 2023
1 parent 2816aeb commit e7bfb89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyVHDLModel/__init__.py
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit e7bfb89

Please sign in to comment.