Skip to content

Commit e46f875

Browse files
Fix error
1 parent 7861d21 commit e46f875

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

utils/msl/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Functions to enable interaction with MSL based SU websites."""
22

33
import logging
4-
from typing import TYPE_CHECKING
4+
from typing import TYPE_CHECKING, override
55

66
import aiohttp
77

@@ -29,6 +29,7 @@
2929
class SUPlatformClient:
3030
"""A client for making authenticated requests to the SU platform."""
3131

32+
@override
3233
def __init__(self) -> None:
3334
self.headers: Mapping[str, str] = settings["SU_PLATFORM_WEB_HEADERS"]
3435
self.cookies: Mapping[str, str] = settings["SU_PLATFORM_ACCESS_COOKIE"]

0 commit comments

Comments
 (0)