Skip to content

Commit 4e9ee57

Browse files
committed
chore(cli): remove # noqa: FBT001 workaround for bool parameters
1 parent 6c331ab commit 4e9ee57

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

unblob/cli.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,19 +265,20 @@ def __init__(
265265
expose_value=False,
266266
)
267267
def cli(
268+
*,
268269
file: Path,
269270
extract_root: Path,
270271
report_file: Optional[Path],
271272
log_path: Path,
272-
force: bool, # noqa: FBT001
273+
force: bool,
273274
process_num: int,
274275
depth: int,
275276
randomness_depth: int,
276277
skip_magic: Iterable[str],
277278
skip_extension: Iterable[str],
278-
clear_skip_magics: bool, # noqa: FBT001
279-
skip_extraction: bool, # noqa: FBT001
280-
keep_extracted_chunks: bool, # noqa: FBT001
279+
clear_skip_magics: bool,
280+
skip_extraction: bool,
281+
keep_extracted_chunks: bool,
281282
carve_suffix: str,
282283
extract_suffix: str,
283284
handlers: Handlers,

0 commit comments

Comments
 (0)