modernisation for python 3.11

This commit is contained in:
Jörg Thalheim
2023-11-29 12:40:48 +01:00
committed by Mic92
parent 7d755beca6
commit 6f0722c692
38 changed files with 160 additions and 163 deletions

View File

@@ -1,7 +1,7 @@
import argparse
from typing import Callable, Optional
from collections.abc import Callable
start_app: Optional[Callable] = None
start_app: Callable | None = None
from .app import start_app