File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ 4.0.2] - 4/15/20
5+ ### Fixed
6+ - Player model bug
7+
48## [ 4.0.1] - 4/12/20
59### Added
610- An alias for ` Player.x3vs3_victories ` called ` team_victories `
Original file line number Diff line number Diff line change 88############
99
1010
11- __version__ = 'v4.0.1 '
11+ __version__ = 'v4.0.2 '
1212__title__ = 'brawlstats'
1313__license__ = 'MIT'
1414__author__ = 'SharpBit'
Original file line number Diff line number Diff line change @@ -42,8 +42,8 @@ class Player(BaseBox):
4242 Returns a full player object with all of its attributes.
4343 """
4444
45- def __init__ (self ):
46- # Make a less awkward alias
45+ def __init__ (self , * args , ** kwargs ):
46+ super (). __init__ ( * args , ** kwargs )
4747 self .team_victories = self .x3vs3_victories
4848
4949 def __repr__ (self ):
You can’t perform that action at this time.
0 commit comments