summaryrefslogtreecommitdiff
path: root/python/types.py
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-11-19 12:40:29 -0500
committerJosh Ferrell <josh@vector35.com>2025-11-19 15:05:16 -0500
commitdae5a014ccbfe5a99379163b49e426eeb0b9e766 (patch)
tree7e6d66c5dec8620f7299ed3e0e6c756875e871b1 /python/types.py
parentd4a7ed9b8fce07ce7206d4ab48b0b333ae69d47a (diff)
Improve python api type hints
Diffstat (limited to 'python/types.py')
-rw-r--r--python/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/types.py b/python/types.py
index 5b3de7c9..7ad75603 100644
--- a/python/types.py
+++ b/python/types.py
@@ -552,7 +552,7 @@ class MutableTypeBuilder(Generic[TB]):
class TypeBuilderAttributes(dict):
- def __init__(self, builder, *args):
+ def __init__(self, builder: 'TypeBuilder', *args):
super(TypeBuilderAttributes, self).__init__(*args)
self._builder = builder