From a220e6c3dd2cfc46b95925b93d5a569901fce11b Mon Sep 17 00:00:00 2001 From: Roman Chernyatchik Date: Mon, 7 Oct 2024 20:02:03 +0200 Subject: [PATCH] tests: test fixed, there was an unrelated warning on `file=out` --- .../highlighting/inspections/py_type_checker_inspection.feature | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/resources/features/highlighting/inspections/py_type_checker_inspection.feature b/src/test/resources/features/highlighting/inspections/py_type_checker_inspection.feature index 650b824a7..95c496284 100644 --- a/src/test/resources/features/highlighting/inspections/py_type_checker_inspection.feature +++ b/src/test/resources/features/highlighting/inspections/py_type_checker_inspection.feature @@ -34,6 +34,7 @@ Feature: Fixes for PyTypeCheckerInspection related false positives run: with open(output[0], 'w') as out: for p in input: + # noinspection PyTypeChecker print(p, file=out) for i,s in enumerate(output): print(i, s)