Core: Fix up issues when resolving merge

This commit is contained in:
Mike Auty
2025-01-01 13:23:02 +00:00
parent f3f2102748
commit c6209800bd
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# We use the SemVer 2.0.0 versioning scheme
VERSION_MAJOR = 2 # Number of releases of the library with a breaking change
VERSION_MINOR = 15 # Number of changes that only add to the interface
VERSION_MINOR = 14 # Number of changes that only add to the interface
VERSION_PATCH = 1 # Number of changes that do not change the interface
VERSION_SUFFIX = ""
@@ -306,6 +306,7 @@ class ModuleInterface(interfaces.configuration.ConfigurableInterface):
@abstractmethod
def symbols(self) -> List:
"""Lists the symbols contained in the symbol table for this module"""
raise NotImplementedError("Symbols property has not been implemented.")
@abstractmethod
def get_symbols_by_absolute_location(self, offset: int, size: int = 0) -> List[str]: