From afba5a76a82ce411690ac9a02a0679e07e500812 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Tue, 18 Jun 2024 12:51:41 -0400 Subject: Fix some 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 a47a1043..2c2b652f 100644 --- a/python/types.py +++ b/python/types.py @@ -1859,7 +1859,7 @@ class Type: @classmethod def create( - cls, handle=core.BNTypeHandle, platform: Optional['_platform.Platform'] = None, confidence: int = core.max_confidence + cls, handle: core.BNTypeHandle, platform: Optional['_platform.Platform'] = None, confidence: int = core.max_confidence ) -> 'Type': assert handle is not None, "Passed a handle which is None" assert isinstance(handle, core.BNTypeHandle) -- cgit v1.3.1