def __init__(self, *args, **kwargs):
     kwargs.setdefault('relative', False)
     super().__init__(*args, **kwargs)
コード例 #2
0
 def __getitem__(self, key):
     try:
         return super().__getitem__(key)
     except TypeError:
         return self.__lookup(key)
コード例 #3
0
 def __init__(self, data, participants):
     super().__init__(data)
     self.__participants = participants
コード例 #4
0
ファイル: match.py プロジェクト: DGoodstein/olsrunner
 def __init__(self, data, participants):
     super().__init__(data)
     self.__participants = participants
     self.__counter = 0
コード例 #5
0
 def __init__(self, data, participants):
     super().__init__(data)
     self.__participant = participants[self.data.participantId]
コード例 #6
0
ファイル: match.py プロジェクト: DGoodstein/olsrunner
 def __init__(self, data, participants):
     super().__init__(data)
     self.__participant = participants[self.data.participantId]
コード例 #7
0
ファイル: match.py プロジェクト: DGoodstein/olsrunner
 def __getitem__(self, key):
     try:
         return super().__getitem__(key)
     except TypeError:
         return self.__lookup(key)
コード例 #8
0
ファイル: game.py プロジェクト: sbrodehl/cassiopeia
 def __init__(self, data, summoner_id):
     super().__init__(data)
     self.__summoner_id = summoner_id
コード例 #9
0
 def __init__(self, arr):
     super(PList, self).__init__(arr)
コード例 #10
0
 def __init__(self, message, error_code, details=None):
     super().__init__(message)
     self.message = message
     self.error_code = error_code
     self.details = details
コード例 #11
0
ファイル: exception.py プロジェクト: icobg123/league-of-stats
 def __init__(self, message, error_code):
     super().__init__(message)
     self.message = message
     self.error_code = error_code
コード例 #12
0
 def __init__(self, config=None):
     super().__init__(config or default_config)
コード例 #13
0
ファイル: game.py プロジェクト: zachcd/cassiopeia
 def __init__(self, data, summoner_id):
     super().__init__(data)
     self.__summoner_id = summoner_id
コード例 #14
0
ファイル: parser.py プロジェクト: Osmose/pyjexl
 def __init__(self, *args, **kwargs):
     kwargs.setdefault('relative', False)
     super().__init__(*args, **kwargs)