kilroy42

Results 2 issues of kilroy42

### Describe the Bug This is a very strange bug, and I cannot really tell why this would happen. You need a very specific code to trigger it (I reduced...

User

### Describe the Bug Test code: ```python from typeguard import check_type from typing import reveal_type x: dict[str, int] | float = {} reveal_type(x) x = check_type(x, dict[str, int]) reveal_type(x) ```...

typechecking