Skip to content

Commit

Permalink
Fix init method in startStop.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sharsonia committed May 25, 2021
1 parent 676d98d commit 7293926
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lisa/features/startstop.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
from typing import Any

from lisa.feature import Feature
from lisa.util.logger import get_logger

FEATURE_NAME_STARTSTOP = "StartStop"


class StartStop(Feature):
def __init__(self, node: Any, platform: Any) -> None:
super().__init__(node, platform)
self._log = self._node.log
self._log = get_logger("startstop", self.name(), self._node.log)

@classmethod
def name(cls) -> str:
Expand Down

0 comments on commit 7293926

Please sign in to comment.