From f4c8a0a68e0013808d169357c9f77ebdf19d0f4e Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Fri, 30 Dec 2022 20:14:18 +0000 Subject: Insert ``from __future__ import annotations`` --- doc/development/tutorials/examples/autodoc_intenum.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc/development/tutorials/examples/autodoc_intenum.py') diff --git a/doc/development/tutorials/examples/autodoc_intenum.py b/doc/development/tutorials/examples/autodoc_intenum.py index a23f9cebf..67b5c3f70 100644 --- a/doc/development/tutorials/examples/autodoc_intenum.py +++ b/doc/development/tutorials/examples/autodoc_intenum.py @@ -1,3 +1,5 @@ +from __future__ import annotations + from enum import IntEnum from typing import Any, Optional -- cgit v1.2.1