10 lines
205 B
Python
10 lines
205 B
Python
from typing import Optional
|
|
|
|
def extract_archive(
|
|
archive: str,
|
|
verbosity: int = ...,
|
|
outdir: Optional[str] = ...,
|
|
program: Optional[str] = ...,
|
|
interactive: bool = ...,
|
|
) -> None: ...
|