Skip to content

Commit 00bb95e

Browse files
authored
fix type
1 parent 335231e commit 00bb95e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/validate_js.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def is_expression(tool, schema):
2626
return isinstance(schema, avro.schema.EnumSchema) and schema.name == "Expression" and isinstance(tool, (str, Text))
2727

2828
class SuppressLog(logging.Filter):
29-
def __init__(self, name): # type: (Text, logging.Logger) -> None
29+
def __init__(self, name): # type: (Text) -> None
3030
name = str(name)
3131
super(SuppressLog, self).__init__(name)
3232

0 commit comments

Comments
 (0)