diff --git a/PFERD/crawlers/ilias/kit_ilias_html.py b/PFERD/crawlers/ilias/kit_ilias_html.py index 17eb855..eed0884 100644 --- a/PFERD/crawlers/ilias/kit_ilias_html.py +++ b/PFERD/crawlers/ilias/kit_ilias_html.py @@ -3,7 +3,6 @@ import re from dataclasses import dataclass from datetime import date, datetime, timedelta from enum import Enum -# TODO In Python 3.9 and above, AsyncContextManager is deprecated from typing import List, Optional, Union from urllib.parse import urljoin, urlparse diff --git a/PFERD/logging.py b/PFERD/logging.py index 9eb2c7c..ef6ee4c 100644 --- a/PFERD/logging.py +++ b/PFERD/logging.py @@ -2,7 +2,7 @@ import asyncio import sys import traceback from contextlib import asynccontextmanager, contextmanager -# TODO In Python 3.9 and above, ContextManager and AsyncContextManager are deprecated +# TODO In Python 3.9 and above, ContextManager is deprecated from typing import AsyncIterator, ContextManager, Iterator, List, Optional from rich.console import Console, RenderGroup