Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
nfearnley committed Dec 2, 2023
1 parent a9ecb1c commit c9e9be1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sizebot/lib/proportions.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def load(cls, playerStats: PlayerStats) -> StatBox:
processed.append(sv)
# If no progress
if len(queued) == len(processing):
raise errors.UnfoundStatException([s.name for s in queued])
raise errors.UnfoundStatException(["Load"], [s.name for s in queued])
return cls(processed)

def scale(self, scale_value: Decimal) -> StatBox:
Expand All @@ -186,7 +186,7 @@ def scale(self, scale_value: Decimal) -> StatBox:
processed.append(sv)
# If no progress
if len(queued) == len(processing):
raise errors.UnfoundStatException([s.stat.name for s in queued])
raise errors.UnfoundStatException(["Scale"], [s.stat.name for s in queued])
return StatBox(processed)

def get(self, stat_name: str) -> StatValue | None:
Expand Down

0 comments on commit c9e9be1

Please sign in to comment.