def account(self) -> "Account": from pyot.models.riot import Account return Account(puuid=self.puuid, region=self.region).set_pipeline("lor")
def participants(self) -> List["Account"]: from pyot.models.riot import Account return [ Account(puuid=puuid, region=self.region).set_pipeline("lor") for puuid in self.participant_puuids ]