Skip to content

Commit f3a9aa5

Browse files
committed
fix mypy errors
1 parent 0151f81 commit f3a9aa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class TestResult(object):
4949
"""Encapsulate relevant test result data."""
5050

5151
def __init__(self, return_code, standard_output, error_output, duration, classname, message=''):
52-
# type: (int, Text, Text, float, str) -> None
52+
# type: (int, Text, Text, float, Text, str) -> None
5353
self.return_code = return_code
5454
self.standard_output = standard_output
5555
self.error_output = error_output

0 commit comments

Comments
 (0)