Update type hints

This commit is contained in:
AlberLC
2025-04-14 22:57:35 +02:00
parent 123498b1f1
commit 2babe0fee7

View File

@@ -8,9 +8,9 @@ import re
import urllib.parse import urllib.parse
from abc import ABC from abc import ABC
from collections import defaultdict from collections import defaultdict
from collections.abc import Awaitable, Callable, Iterable, Iterator from collections.abc import Awaitable, Callable, Iterable
from contextlib import asynccontextmanager from contextlib import asynccontextmanager
from typing import Any from typing import Any, AsyncIterator
import aiohttp import aiohttp
import flanautils import flanautils
@@ -63,7 +63,7 @@ class SteamBot(MultiBot, ABC):
@asynccontextmanager @asynccontextmanager
async def _create_browser_context( async def _create_browser_context(
browser: playwright.async_api.Browser browser: playwright.async_api.Browser
) -> Iterator[playwright.async_api.BrowserContext]: ) -> AsyncIterator[playwright.async_api.BrowserContext]:
async with await browser.new_context( async with await browser.new_context(
user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.49 Safari/537.36', user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.49 Safari/537.36',
screen={ screen={