diff options
| author | Timothy Crosley <timothy.crosley@gmail.com> | 2020-02-10 12:01:18 -0800 |
|---|---|---|
| committer | Timothy Crosley <timothy.crosley@gmail.com> | 2020-02-10 12:01:18 -0800 |
| commit | dd8824d4d8572a0d97029778f5588f3d43819292 (patch) | |
| tree | ca0404184412b6b17fd56c201ff2c95d7cae9a71 | |
| parent | 585caf9aa5bf5a262a71790fa2740809aa5fce5a (diff) | |
| download | isort-feature/fix_windows_testing.tar.gz | |
Add missing sys import to test_io modulefeature/fix_windows_testing
| -rw-r--r-- | tests/test_io.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_io.py b/tests/test_io.py index fa0ebdba..23a6214c 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -1,3 +1,4 @@ +import sys from unittest.mock import MagicMock, patch import pytest |
