@@ -145,9 +145,28 @@ class Character(abc.BaseCharacter):
145145 Other characters in the same account.
146146 It will be empty if the character is hidden, otherwise, it will contain at least the character itself.
147147 """
148- __slots__ = ("former_names" , "sex" , "vocation" , "level" , "achievement_points" , "world" , "former_world" , "residence" ,
149- "married_to" , "house" , "guild_membership" , "last_login" , "account_status" , "position" , "comment" ,
150- "achievements" , "deaths" , "account_information" , "other_characters" , "deletion_date" )
148+ __slots__ = (
149+ "former_names" ,
150+ "sex" ,
151+ "vocation" ,
152+ "level" ,
153+ "achievement_points" ,
154+ "world" ,
155+ "former_world" ,
156+ "residence" ,
157+ "married_to" ,
158+ "house" ,
159+ "guild_membership" ,
160+ "last_login" ,
161+ "account_status" ,
162+ "position" ,
163+ "comment" ,
164+ "achievements" ,
165+ "deaths" ,
166+ "account_information" ,
167+ "other_characters" ,
168+ "deletion_date" ,
169+ )
151170
152171 def __init__ (self , name = None , world = None , vocation = None , level = 0 , sex = None , ** kwargs ):
153172 self .name = name # type: str
@@ -604,7 +623,12 @@ class Death(abc.Serializable):
604623 time: :class:`datetime.datetime`
605624 The time at which the death occurred.
606625 """
607- __slots__ = ("level" , "killers" , "time" , "assists" , "name" )
626+ __slots__ = (
627+ "level" ,
628+ "killers" ,
629+ "time" ,
630+ "assists" ,
631+ "name" )
608632
609633 def __init__ (self , name = None , level = 0 , ** kwargs ):
610634 self .name = name
@@ -652,7 +676,9 @@ class GuildMembership(abc.BaseGuild):
652676 rank: :class:`str`
653677 The name of the rank the member has.
654678 """
655- __slots__ = ("rank" ,)
679+ __slots__ = (
680+ "rank" ,
681+ )
656682
657683 def __init__ (self , name , rank ):
658684 self .name = name # type: str
@@ -681,7 +707,11 @@ class Killer(abc.Serializable):
681707 summon: :class:`str`, optional
682708 The name of the summoned creature, if applicable.
683709 """
684- __slots__ = ("name" , "player" , "summon" )
710+ __slots__ = (
711+ "name" ,
712+ "player" ,
713+ "summon"
714+ )
685715
686716 def __init__ (self , name , player = False , summon = None ):
687717 self .name = name # type: str
@@ -726,7 +756,11 @@ class OnlineCharacter(abc.BaseCharacter):
726756 level: :class:`int`
727757 The level of the character.
728758 """
729- __slots__ = ("world" , "vocation" , "level" )
759+ __slots__ = (
760+ "world" ,
761+ "vocation" ,
762+ "level" ,
763+ )
730764
731765 def __init__ (self , name , world , level , vocation ):
732766 self .name = name # type: str
@@ -750,7 +784,11 @@ class OtherCharacter(abc.BaseCharacter):
750784 deleted: :class:`bool`
751785 Whether the character is scheduled for deletion or not.
752786 """
753- __slots__ = ("world" , "online" , "deleted" )
787+ __slots__ = (
788+ "world" ,
789+ "online" ,
790+ "deleted"
791+ )
754792
755793 def __init__ (self , name , world , online = False , deleted = False ):
756794 self .name = name # type: str
0 commit comments