Remove -n from argument list
(args: list[str])
| 8 | |
| 9 | |
| 10 | def remove_num_threads_option(args: list[str]) -> None: |
| 11 | """Remove -n <n> from argument list""" |
| 12 | for i in range(0, len(args)): |
| 13 | if args[i] == "-n": |
| 14 | del args[i : i + 2] |
| 15 | break |
| 16 | |
| 17 | |
| 18 | def cache_dir(args: list[str]) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…