diff options
| author | Josh Ferrell <josh@vector35.com> | 2024-06-18 12:51:41 -0400 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2024-06-21 10:38:39 -0400 |
| commit | afba5a76a82ce411690ac9a02a0679e07e500812 (patch) | |
| tree | 0c5bb094d027ba9eccad8e2f8df75a42efe7dc4b /python/types.py | |
| parent | 38e719b90b89aa45ebeda1c41dc9a9edd42cdc90 (diff) | |
Fix some type hints
Diffstat (limited to 'python/types.py')
| -rw-r--r-- | python/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
