Skip to content

Commit 7a9d419

Browse files
committed
move functools import
1 parent f09844a commit 7a9d419

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/test_examples.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from __future__ import absolute_import
22
import unittest
33
import pytest
4-
import functools
54
import subprocess
65
from os import path
76
import sys

tests/util.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from __future__ import absolute_import
22
import os
3+
import functools
34

45
from pkg_resources import (Requirement, ResolutionError, # type: ignore
56
resource_filename)
67
import distutils.spawn
78
import pytest
89

9-
from cwltool.utils import onWindows
10+
from cwltool.utils import onWindows, windows_default_container_id
1011
from cwltool.factory import Factory
1112

1213
def get_windows_safe_factory(**execkwargs):

0 commit comments

Comments
 (0)