Skip to content

Commit f3c93b8

Browse files
committed
flake8.
1 parent ad949f1 commit f3c93b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wes_service/toil_wes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ def write_workflow(self, request, opts, wftype='cwl'):
5454
subprocess.check_call(['wget', workflow_url])
5555
workflow_url = os.path.abspath(workflow_url.split('/')[-1])
5656
command_args = ['toil-wdl-runner'] + extra + [workflow_url, self.input_json]
57-
assert(os.path.exists(workflow_url), workflow_url)
57+
assert(os.path.exists(workflow_url), workflow_url) # noqa
5858
with open(workflow_url, 'r') as f:
5959
logging.info(f.read())
60-
assert(os.path.exists(self.input_json), self.input_json)
60+
assert(os.path.exists(self.input_json), self.input_json) # noqa
6161
with open(self.input_json, 'r') as f:
6262
logging.info(f.read())
6363
elif wftype == 'py':
@@ -113,7 +113,7 @@ def getlog(self):
113113
stderr = self.fetch(self.errfile)
114114
starttime = self.fetch(self.starttime)
115115
endtime = self.fetch(self.endtime)
116-
cmd = self.fetch(self.cmdfile)
116+
# cmd = self.fetch(self.cmdfile)
117117

118118
outputobj = {}
119119
if state == "COMPLETE":

0 commit comments

Comments
 (0)