summaryrefslogtreecommitdiff
path: root/python/typelibrary.py
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2026-01-18 20:32:26 -0500
committerJordan Wiens <github@psifertex.com>2026-01-18 20:32:26 -0500
commitede18e23133ade890c533703bf68858c5ee84edd (patch)
tree06b5f74634ea019ccd5068af8401d665c96ae17d /python/typelibrary.py
parent1011a126cc04dfe7e5ad38614019a6699519fd0e (diff)
fix syntax for note section of newly added api docs
Diffstat (limited to 'python/typelibrary.py')
-rw-r--r--python/typelibrary.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/typelibrary.py b/python/typelibrary.py
index 5409946c..65aabb12 100644
--- a/python/typelibrary.py
+++ b/python/typelibrary.py
@@ -237,11 +237,11 @@ class TypeLibrary:
"""
`query_metadata` retrieves a metadata associated with the given key stored in the type library
+ .. note:: As of Binary Ninja 5.3 this API now raises KeyError on failure. \
+ Please use `get_metadata` for a non-raising version of the API.
+
:param string key: key to query
:rtype: metadata associated with the key
- ..note: As of Binary Ninja 5.3 this API now raises KeyError on failure. Please use `get_metadata`
- for a non-raising version of the API.
-
:Example:
>>> lib.store_metadata("ordinals", {"9": "htons"})