Esempio n. 1
0
 def account(self) -> "Account":
     from pyot.models.riot import Account
     return Account(puuid=self.puuid,
                    region=self.region).set_pipeline("lor")
Esempio n. 2
0
 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
     ]