typing_extensions: Fix "isinsance" typo (#12554)

Fixes this error during coverage builds:

```
 === Uncaught Python exception: ===
NameError: name 'isinsance' is not defined
Traceback (most recent call last):
  File "fuzz_typing_extensions.py", line 65, in TestOneInput
NameError: name 'isinsance' is not defined
```

Co-authored-by: Vitor Guidi <vitorguidi@gmail.com>
This commit is contained in:
correctmost 2024-10-07 14:03:46 -04:00 committed by GitHub
parent 2091719f51
commit 16f697c70b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ def TestOneInput(data):
except:
d1 = None
d2 = None
if isinstance(d1, dict) and isinsance(d2, dict):
if isinstance(d1, dict) and isinstance(d2, dict):
if d1 != d2:
assert TypedDict('D1', d1) != TypedDict('D2', d2)
else: