(path: str, filenames: list[str])
| 47 | |
| 48 | |
| 49 | def files_in_path(path: str, filenames: list[str]): |
| 50 | srcdir = utils.path_from_root(path) |
| 51 | return [os.path.join(srcdir, f) for f in filenames] |
| 52 | |
| 53 | |
| 54 | def glob_in_path(path: str, glob_pattern: str, excludes: set[str] = set()): # noqa: B006 |
no test coverage detected