From dae5a014ccbfe5a99379163b49e426eeb0b9e766 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 19 Nov 2025 12:40:29 -0500 Subject: Improve python api type hints --- python/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/types.py') 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 -- cgit v1.3.1