Add from __future__ import annotations to delay evaluation

This commit is contained in:
Vytautas Liuolia
2025-11-16 14:41:25 +01:00
committed by GitHub
parent 7751f9a6b6
commit 7b4a3c8500

View File

@@ -7,6 +7,8 @@
""" """
Server implementation using the falcon webserver framework. Server implementation using the falcon webserver framework.
""" """
from __future__ import annotations
from typing import Optional, Mapping, Any, List, cast from typing import Optional, Mapping, Any, List, cast
from pathlib import Path from pathlib import Path
import asyncio import asyncio