initialize lists properly

pull/20/head
justcool393 2022-11-18 06:39:36 -06:00
parent 92906691e1
commit fc5d524e87
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class LoggedOutUser():
(badges, subscriptions, following, followers, viewers,
blocking, blocked, authorizations, apps, awards,
referrals, designed_hats, owned_hats, hats_equipped,
sub_mods, sub_exiles) = []
sub_mods, sub_exiles) = ([] for i in range(16))
def __repr__(self):
return "<LoggedOutUser>"