summaryrefslogtreecommitdiff
path: root/pylint/checkers/unsupported_version.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/unsupported_version.py')
-rw-r--r--pylint/checkers/unsupported_version.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/unsupported_version.py b/pylint/checkers/unsupported_version.py
index 3832b50ba..64f2630d8 100644
--- a/pylint/checkers/unsupported_version.py
+++ b/pylint/checkers/unsupported_version.py
@@ -34,7 +34,7 @@ class UnsupportedVersionChecker(BaseChecker):
"F-strings are not supported by all versions included in the py-version setting",
"using-f-string-in-unsupported-version",
"Used when the py-version set by the user is lower than 3.6 and pylint encounters "
- "a f-string.",
+ "an f-string.",
),
"W2602": (
"typing.final is not supported by all versions included in the py-version setting",