Apply suggestions from code review of branch faster-stage-tests

Co-authored-by: Beth Probert <beth_probert@outlook.com>
This commit is contained in:
Julian Stirling 2025-08-08 09:32:31 +00:00
parent 90dbb35a9e
commit 3a4b99df55
2 changed files with 3 additions and 3 deletions

View file

@ -14,6 +14,6 @@ import time
class MockCancel:
"""A class to use when directly calling an action with CancelHook dependency."""
def sleep(self, time_in_seconds: float):
def sleep(self, time_in_seconds: float) -> None:
"""Sleep for the input number of seconds."""
time.sleep(time_in_seconds)