Skip to content

Commit ad18c87

Browse files
exclude test_query_eval.py for rst-inline-touching-normal in .pre-commit-config.yaml
1 parent 87ded7c commit ad18c87

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ repos:
8585
types: [text] # overwrite types: [rst]
8686
types_or: [python, rst]
8787
- id: rst-inline-touching-normal
88+
exclude: ^pandas/tests/frame/test_query_eval.py
8889
types: [text] # overwrite types: [rst]
8990
types_or: [python, rst]
9091
- repo: https://github.com/sphinx-contrib/sphinx-lint

pandas/core/computation/parsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def _split_by_backtick(s: str) -> list[tuple[bool, str]]:
205205
The second is the actual substring.
206206
"""
207207
substrings = []
208-
substr: list[str] = [] # join into a string before adding to `substrings`
208+
substr: list[str] = [] # Will join into a string before adding to `substrings`
209209
i = 0
210210
parse_state = ParseState.DEFAULT
211211
while i < len(s):

0 commit comments

Comments
 (0)