File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed
Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,13 @@ class ConnectorImageBuildError(Exception):
2929 build_args : list [str ]
3030
3131 def __str__ (self ) -> str :
32- return "\n " .join ([
33- f"ConnectorImageBuildError: Could not build image." ,
34- f"Build args: { self .build_args } " ,
35- f"Error text: { self .error_text } " ,
36- ])
32+ return "\n " .join (
33+ [
34+ f"ConnectorImageBuildError: Could not build image." ,
35+ f"Build args: { self .build_args } " ,
36+ f"Error text: { self .error_text } " ,
37+ ]
38+ )
3739
3840
3941logger = logging .getLogger (__name__ )
@@ -78,11 +80,13 @@ def _build_image(
7880 docker_args .append (f"--build-arg={ key } ={ value } " )
7981 else :
8082 docker_args .append (f"--build-arg={ key } " )
81- docker_args .extend ([
82- "-t" ,
83- tag ,
84- str (context_dir ),
85- ])
83+ docker_args .extend (
84+ [
85+ "-t" ,
86+ tag ,
87+ str (context_dir ),
88+ ]
89+ )
8690
8791 print (f"Building image: { tag } ({ arch } )" )
8892 try :
You can’t perform that action at this time.
0 commit comments