Skip to content

Commit 056d910

Browse files
committed
maintenance: ignore type errors on imports
1 parent 7c8b330 commit 056d910

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
import logging
1111
import os
1212
try:
13-
from os import scandir
13+
from os import scandir # type: ignore
1414
except ImportError:
15-
from scandir import scandir
15+
from scandir import scandir # type: ignore
1616
import shutil
1717
import stat
1818
import tempfile

0 commit comments

Comments
 (0)