Skip to content

Commit cfa1990

Browse files
committed
cwltool/sandboxjs.py: fix mypy errors due to import statement
1 parent e9f01e2 commit cfa1990

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/sandboxjs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
import six
1616

1717
try:
18-
import queue #python3
18+
import queue # type: ignore
1919
except ImportError:
20-
import Queue as queue
20+
import Queue as queue # type: ignore
2121

2222
class JavascriptException(Exception):
2323
pass

0 commit comments

Comments
 (0)