We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7861d21 commit e46f875Copy full SHA for e46f875
1 file changed
utils/msl/core.py
@@ -1,7 +1,7 @@
1
"""Functions to enable interaction with MSL based SU websites."""
2
3
import logging
4
-from typing import TYPE_CHECKING
+from typing import TYPE_CHECKING, override
5
6
import aiohttp
7
@@ -29,6 +29,7 @@
29
class SUPlatformClient:
30
"""A client for making authenticated requests to the SU platform."""
31
32
+ @override
33
def __init__(self) -> None:
34
self.headers: Mapping[str, str] = settings["SU_PLATFORM_WEB_HEADERS"]
35
self.cookies: Mapping[str, str] = settings["SU_PLATFORM_ACCESS_COOKIE"]
0 commit comments