From 42f562416da20479b322fe7a8b114ebb25a50c97 Mon Sep 17 00:00:00 2001 From: "sundar.shankar" Date: Mon, 13 Jan 2025 21:27:44 +0530 Subject: [PATCH] fmt patch --- tests/unit/no_cheat.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/unit/no_cheat.py b/tests/unit/no_cheat.py index e0979c1..c24cd23 100644 --- a/tests/unit/no_cheat.py +++ b/tests/unit/no_cheat.py @@ -1,11 +1,11 @@ import sys from pathlib import Path -DISABLE_TAG = '# pylint: disable=' +DISABLE_TAG = "# pylint: disable=" def no_cheat(diff_text: str) -> str: - lines = diff_text.split('\n') + lines = diff_text.split("\n") removed: dict[str, int] = {} added: dict[str, int] = {} for line in lines: @@ -14,9 +14,9 @@ def no_cheat(diff_text: str) -> str: idx = line.find(DISABLE_TAG) if idx < 0: continue - codes = line[idx + len(DISABLE_TAG) :].split(',') + codes = line[idx + len(DISABLE_TAG) :].split(",") for code in codes: - code = code.strip().strip('\n').strip('"').strip("'") + code = code.strip().strip("\n").strip('"').strip("'") if line.startswith("-"): removed[code] = removed.get(code, 0) + 1 continue @@ -26,7 +26,7 @@ def no_cheat(diff_text: str) -> str: count -= removed.get(code, 0) if count > 0: results.append(f"Do not cheat the linter: found {count} additional {DISABLE_TAG}{code}") - return '\n'.join(results) + return "\n".join(results) if __name__ == "__main__":