From f6d886349b771f1552ec88b3f4ebc0a6c6daaf8e Mon Sep 17 00:00:00 2001 From: Petr Date: Thu, 24 Apr 2025 15:14:36 +0200 Subject: [PATCH] Add missing import in enums_members.py --- conformance/tests/enums_members.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conformance/tests/enums_members.py b/conformance/tests/enums_members.py index 52007e4d4..0dd8e5509 100644 --- a/conformance/tests/enums_members.py +++ b/conformance/tests/enums_members.py @@ -5,7 +5,7 @@ # Specification: https://typing.readthedocs.io/en/latest/spec/enums.html#defining-members from enum import Enum, member, nonmember -from typing import Literal, assert_type +from typing import Literal, assert_type, reveal_type # > If an attribute is defined in the class body with a type annotation but # > with no assigned value, a type checker should assume this is a non-member