| Conditions | 2 |
| Total Lines | 4 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | # SPDX-FileCopyrightText: 2020 Peter Bittner <[email protected]> |
||
| 48 | def remove_freeform_targets(directory, glob_patterns, yes, dry_run=False): |
||
| 49 | for path_glob in glob_patterns: |
||
| 50 | log.debug('Erase file system objects matching: %s', path_glob) |
||
| 51 | delete_filesystem_objects(directory, path_glob, prompt=not yes, dry_run=dry_run) |
||
| 52 |