Skip to content

Commit 6343c49

Browse files
committed
Fix lint errors
1 parent 63fba7b commit 6343c49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python_testing/TC_TSTAT_4_2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -480,11 +480,11 @@ async def test_TC_TSTAT_4_2(self):
480480
if presetType.presetScenario == scenario:
481481
foundMatchingScenario = True
482482
break
483-
if foundMatchingScenario == False:
483+
if not foundMatchingScenario:
484484
scenarioNotPresent = scenario
485485
break
486486

487-
if scenarioNotPresent == None:
487+
if scenarioNotPresent is None:
488488
logger.info(
489489
"Couldn't run test step 17 since all preset types in PresetScenarioEnum are supported by this Thermostat")
490490
else:

0 commit comments

Comments
 (0)