We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e7d16 commit 3c105a4Copy full SHA for 3c105a4
pylint/checkers/spelling.py
@@ -182,9 +182,8 @@ def _next(self):
182
def _strip_code_flanked_in_backticks(line: str) -> str:
183
"""Alter line so code flanked in backticks is ignored.
184
185
- Pyenchant automatically strips backticks when parsing tokens, so this cannot be done at the individual filter level.
186
-
187
- """
+ Pyenchant automatically strips backticks when parsing tokens,
+ so this cannot be done at the individual filter level."""
188
189
def replace_code_but_leave_surrounding_characters(match_obj) -> str:
190
return match_obj.group(1) + match_obj.group(5)
0 commit comments