Skip to content

Commit

Permalink
Remove incorrect type annotation on Backend::symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Aug 25, 2023
1 parent 8706677 commit 64e98fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cle/backends/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def __init__(
self._segments: Regions["Segment"] = Regions() # List of segments
self._sections: Regions["Section"] = Regions() # List of sections
self.sections_map = {} # Mapping from section name to section
self.symbols: "List[Symbol]" = sortedcontainers.SortedKeyList(key=self._get_symbol_relative_addr)
self.symbols = sortedcontainers.SortedKeyList(key=self._get_symbol_relative_addr)
self.imports: typing.Dict[str, "Relocation"] = {}
self.resolved_imports = []
self.relocs: "List[Relocation]" = []
Expand Down

0 comments on commit 64e98fd

Please sign in to comment.