コード例 #1
0
ファイル: match.py プロジェクト: platinumscott/Pyot
 def account(self) -> "Account":
     from pyot.models.riot import Account
     return Account(puuid=self.puuid,
                    region=self.region).set_pipeline("lor")
コード例 #2
0
ファイル: match.py プロジェクト: platinumscott/Pyot
 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
     ]