summaryrefslogtreecommitdiff
path: root/libmat2/bubblewrap.py
diff options
context:
space:
mode:
authorjvoisin2023-01-28 15:57:20 +0000
committerjvoisin2023-01-28 15:57:20 +0000
commit39fb254e019c920516bb317d4b48a8de7cac850e (patch)
tree5a5397fe318b8b73f6ebfdb9d1d6c0b64bbda0a3 /libmat2/bubblewrap.py
parent1f73a16ef36d1a8e771a0b3695818d18e095486b (diff)
Fix the type annotations
Diffstat (limited to 'libmat2/bubblewrap.py')
-rw-r--r--libmat2/bubblewrap.py4
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
12import subprocess 12import subprocess
13import tempfile 13import tempfile
14import functools 14import functools
15from typing import Optional 15from 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
34def _get_bwrap_args(tempdir: str, 34def _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