File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff 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]
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ def __hash__(self):
139139Map 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"""
144144Simple regex pattern used to clean up table names.
145145"""
You can’t perform that action at this time.
0 commit comments