Skip to content

Commit

Permalink
Define test params in init
Browse files Browse the repository at this point in the history
  • Loading branch information
rgc99 committed Oct 21, 2023
1 parent 3c5adfb commit ab8686c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4057,6 +4057,12 @@ class IUTester:
def __init__(self, coordinator: "IUCoordinator") -> None:
# Passed parameters
self._coordinator = coordinator
# Config parameters
self._enabled: bool = False
self._speed: float = None
self._output_events: bool = None
self._show_log: bool = None
self._autoplay: bool = None
# Private variables
self._tests: list[IUTest] = []
self._test_initialised = False
Expand Down

0 comments on commit ab8686c

Please sign in to comment.