Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
plauric committed Sep 1, 2023
1 parent 9eaf58f commit b47c69e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/python_testing/TC_RVCCLEANM_3_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async def write_start_up_mode(self, newMode):
async def check_preconditions(self, endpoint):
# check whether the StartUpMode will be overridden by the OnMode attribute

if self.check_pics("RVCCLEANM.S.F00") == False:
if self.check_pics("RVCCLEANM.S.F00") is False:
return True

logging.info("RVCCLEANM.S.F00: 1")
Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_RVCRUNM_3_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async def write_start_up_mode(self, newMode):
async def check_preconditions(self, endpoint):
# check whether the StartUpMode will be overridden by the OnMode attribute

if self.check_pics("RVCRUNM.S.F00") == False:
if self.check_pics("RVCRUNM.S.F00") is False:
return True

logging.info("RVCRUNM.S.F00: 1")
Expand Down

0 comments on commit b47c69e

Please sign in to comment.