Skip to content

Commit 9ee0379

Browse files
author
Alan Christie
committed
Lint fix
1 parent aa70ca5 commit 9ee0379

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jote/compose.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import os
88
import shutil
99
import subprocess
10-
from typing import Dict, Optional, Tuple
10+
from typing import Any, Dict, Optional, Tuple
1111

1212
_INSTANCE_DIRECTORY: str = '.instance-88888888-8888-8888-8888-888888888888'
1313

@@ -114,7 +114,7 @@ def create(self) -> str:
114114
os.makedirs(inst_path)
115115

116116
# Write the Docker compose content to a file to the test directory
117-
variables: Dict[str, str] = {'test_path': project_path,
117+
variables: Dict[str, Any] = {'test_path': project_path,
118118
'image': self._image,
119119
'uid': os.geteuid(),
120120
'gid': os.getegid(),

0 commit comments

Comments
 (0)