Skip to content

Commit 3a3c6b9

Browse files
authored
Merge pull request #461 from common-workflow-language/unicode_literal_usage
upgrade mypy to v.520
2 parents c5175f4 + eac81d5 commit 3a3c6b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cwltool/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def avroize_type(field_type, name_prefix=""):
396396
avroize_type(field_type["items"], name_prefix)
397397
return field_type
398398

399-
class Process(six.with_metaclass(abc.ABCMeta, object)): # type: ignore
399+
class Process(six.with_metaclass(abc.ABCMeta, object)):
400400
def __init__(self, toolpath_object, **kwargs):
401401
# type: (Dict[Text, Any], **Any) -> None
402402
"""

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ deps = -rrequirements.txt
1414
commands = make mypy2
1515
whitelist_externals = make
1616
deps =
17-
mypy==0.511
17+
mypy==0.520
1818
-rrequirements.txt
1919

2020
[testenv:py35-mypy3]
2121
commands = make mypy3
2222
whitelist_externals = make
2323
deps =
24-
mypy==0.511
24+
mypy==0.520
2525
-rrequirements.txt
2626

2727
[testenv:py27-lint]

0 commit comments

Comments
 (0)