diff options
| author | Rubens Brandao <git@rubens.io> | 2024-05-11 10:32:25 -0300 |
|---|---|---|
| committer | Kyle Martin <krm504@nyu.edu> | 2024-05-15 13:27:13 -0400 |
| commit | 53bbcbebf77d8d45f4349078116f648fdde5b753 (patch) | |
| tree | a8d18b1c048de0c2bc44c8dfa4184e7e12d832ed | |
| parent | d4b928febf71fc6067db0b81023ad0564d81d808 (diff) | |
fix py function.get_tags_at returned type
| -rw-r--r-- | python/function.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python/function.py b/python/function.py index e08bb6c3..3f667b5f 100644 --- a/python/function.py +++ b/python/function.py @@ -659,10 +659,9 @@ class Function: """ return TagList(self) - def get_tags_at(self, addr: int, arch: Optional['architecture.Architecture'] = None, auto: Optional[bool] = None) -> List[Tuple['architecture.Architecture', int, 'binaryview.Tag']]: + def get_tags_at(self, addr: int, arch: Optional['architecture.Architecture'] = None, auto: Optional[bool] = None) -> List['binaryview.Tag']: """ - ``get_tags`` gets a list of Tags (but not function tags). You optionally get tags by address, range, or type, and filter by user tags. - Tags are returned as a list of (arch, address, Tag) tuples. + ``get_tags`` gets a list of Tags (but not function tags). :param int addr: Address to get tags from. :param bool auto: If None, gets all tags, if True, gets auto tags, if False, gets user tags |
