Skip to content

Commit 57a4a87

Browse files
kannon92mr-c
authored andcommitted
feat: remove double import
1 parent a6534eb commit 57a4a87

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cwltool/job.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,7 @@ def is_streamable(file: str) -> bool:
230230
if runtimeContext.log_dir == "":
231231
self.base_path_logs = self.outdir
232232
else:
233-
import uuid
234-
self.base_path_logs = runtimeContext.log_dir + '/' + uuid.uuid4().hex
233+
self.base_path_logs = runtimeContext.log_dir + "/" + uuid.uuid4().hex
235234

236235
def _execute(
237236
self,

0 commit comments

Comments
 (0)