Source code for redditwarp.models.my_account_SYNC


from __future__ import annotations
from typing import TYPE_CHECKING, Mapping, Any
if TYPE_CHECKING:
    from ..client_SYNC import Client

from .my_account import MyAccount as BaseMyAccount

[docs]class MyAccount(BaseMyAccount): def __init__(self, d: Mapping[str, Any], client: Client) -> None: super().__init__(d) self.client: Client = client ("")