File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,6 @@ def python_reported_file(filename: str) -> str:
195
195
return filename
196
196
197
197
198
-
199
-
200
198
def isabs_anywhere (filename : str ) -> bool :
201
199
"""Is `filename` an absolute path on any OS?"""
202
200
return ntpath .isabs (filename ) or posixpath .isabs (filename )
Original file line number Diff line number Diff line change @@ -201,8 +201,8 @@ def __init__(
201
201
self .source_pkgs .append (src )
202
202
self .source_pkgs_unmatched = self .source_pkgs [:]
203
203
204
- self .omit = prep_patterns (config .run_omit )
205
204
self .include = prep_patterns (config .run_include )
205
+ self .omit = prep_patterns (config .run_omit )
206
206
207
207
# The directories for files considered "installed with the interpreter".
208
208
self .pylib_paths : Set [str ] = set ()
You can’t perform that action at this time.
0 commit comments