We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa70ca5 commit 9ee0379Copy full SHA for 9ee0379
jote/compose.py
@@ -7,7 +7,7 @@
7
import os
8
import shutil
9
import subprocess
10
-from typing import Dict, Optional, Tuple
+from typing import Any, Dict, Optional, Tuple
11
12
_INSTANCE_DIRECTORY: str = '.instance-88888888-8888-8888-8888-888888888888'
13
@@ -114,7 +114,7 @@ def create(self) -> str:
114
os.makedirs(inst_path)
115
116
# Write the Docker compose content to a file to the test directory
117
- variables: Dict[str, str] = {'test_path': project_path,
+ variables: Dict[str, Any] = {'test_path': project_path,
118
'image': self._image,
119
'uid': os.geteuid(),
120
'gid': os.getegid(),
0 commit comments