fix circular import for _io_repeat

This commit is contained in:
Philipp Fruck
2024-04-08 11:49:28 +02:00
parent 7a00f73e0e
commit 3a05b90525
4 changed files with 43 additions and 38 deletions

View File

@ -7,8 +7,9 @@ from bs4 import BeautifulSoup
from ...auth import Authenticator, TfaAuthenticator
from ...config import Config
from ...logging import log
from ...utils import _iorepeat, soupify
from ...utils import soupify
from ..crawler import CrawlError, CrawlWarning
from .async_helper import _iorepeat
from .ilias_web_crawler import IliasWebCrawler, IliasWebCrawlerSection
TargetType = Union[str, int]