Skip to content

Commit e46fa3a

Browse files
authored
Merge pull request #386 from catalyst-cooperative/python-3.14
Fix linter warning about bad escape sequence
2 parents 23eebe6 + a791cc8 commit e46fa3a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ ignore = [
157157
"PD010", # Use of df.stack()
158158
"PD013", # Use of df.unstack()
159159
"PD015", # Use of pd.merge() rather than df.merge()
160-
"PD901", # df as variable name
161160
"RET504", # Ignore unnecessary assignment before return
162161
"S101", # Use of assert
163162
]

src/ferc_xbrl_extractor/datapackage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def __hash__(self):
139139
Map callables to schema field type to convert parsed values (Data Package `field.type`).
140140
"""
141141

142-
TABLE_NAME_PATTERN = re.compile("(.+)\s+-\s+Schedule\s+-\s+(.*)", re.I) # noqa: W605
142+
TABLE_NAME_PATTERN = re.compile(r"(.+)\s+-\s+Schedule\s+-\s+(.*)", re.I)
143143
"""
144144
Simple regex pattern used to clean up table names.
145145
"""

0 commit comments

Comments
 (0)