Skip to content

Commit

Permalink
Update scenario/mocking.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyandrewmeyer authored May 30, 2024
1 parent 3af018c commit 469de89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scenario/mocking.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def action_get(self):
def storage_add(self, name: str, count: int = 1):
if not isinstance(count, int) or isinstance(count, bool):
raise TypeError(
f"storage count must be integer, got: {count} ({type(count)}",
f"storage count must be integer, got: {count} ({type(count)})",
)

if "/" in name:
Expand Down

0 comments on commit 469de89

Please sign in to comment.