gifn-apply: drop the pylint test environment

Ruff does that now.

Change-Id: I0e5c8a9b3eedbe0ccc96927ff915965a4c43597c
diff --git a/tools/git-if-needed/python/gifn_apply/git.py b/tools/git-if-needed/python/gifn_apply/git.py
index 8650fd6..931e930 100644
--- a/tools/git-if-needed/python/gifn_apply/git.py
+++ b/tools/git-if-needed/python/gifn_apply/git.py
@@ -84,8 +84,8 @@
         fields: Final = line.split()
         # The magic value will go away once we can use structural pattern matching
         if (
-            len(fields) != 2  # noqa: PLR2004  # pylint: disable=magic-value-comparison
-            or fields[0] != "Change-Id:"  # pylint: disable=magic-value-comparison
+            len(fields) != 2  # noqa: PLR2004
+            or fields[0] != "Change-Id:"
             or not fields[1].startswith("I")
         ):
             raise GitError(f"Unexpected `git log` ouput for change IDs: {line!r}")