Browse Source

Ensure disambiguator is registered and properly type return

This was throwing off the typechecker.
nosoop 10 months ago
parent
commit
63a601e7d5
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/smgdc/validate.py

+ 2 - 1
src/smgdc/validate.py

@@ -17,6 +17,7 @@ import angr
 import msgspec
 
 from . import vtable as vt_helpers
+from .angr.vtable_disamb import VtableDisambiguator
 from .types import ByteSignature, Code, IntLiteral
 
 KEY_AS_IS = string.Template("${name}")
@@ -86,7 +87,7 @@ class LinuxBinary(BaseBinary):
         super().__init__(path, cache_path)
 
     @functools.cached_property
-    def vtable_disambiguator(self):
+    def vtable_disambiguator(self) -> VtableDisambiguator:
         return self.angr.analyses.VtableDisambiguator()