diff options
Diffstat (limited to 'libmat2/bubblewrap.py')
| -rw-r--r-- | libmat2/bubblewrap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmat2/bubblewrap.py b/libmat2/bubblewrap.py index 0e202b9..e59f111 100644 --- a/libmat2/bubblewrap.py +++ b/libmat2/bubblewrap.py | |||
| @@ -12,7 +12,7 @@ import shutil | |||
| 12 | import subprocess | 12 | import subprocess |
| 13 | import tempfile | 13 | import tempfile |
| 14 | import functools | 14 | import functools |
| 15 | from typing import Optional | 15 | from typing import Optional, List |
| 16 | 16 | ||
| 17 | 17 | ||
| 18 | __all__ = ['PIPE', 'run', 'CalledProcessError'] | 18 | __all__ = ['PIPE', 'run', 'CalledProcessError'] |
| @@ -33,7 +33,7 @@ def _get_bwrap_path() -> str: | |||
| 33 | 33 | ||
| 34 | def _get_bwrap_args(tempdir: str, | 34 | def _get_bwrap_args(tempdir: str, |
| 35 | input_filename: str, | 35 | input_filename: str, |
| 36 | output_filename: Optional[str] = None) -> list[str]: | 36 | output_filename: Optional[str] = None) -> List[str]: |
| 37 | ro_bind_args = [] | 37 | ro_bind_args = [] |
| 38 | cwd = os.getcwd() | 38 | cwd = os.getcwd() |
| 39 | 39 | ||
