diff options
| author | Aaron Eikenberry <[email protected]> | 2017-08-03 00:10:42 -0500 |
|---|---|---|
| committer | Aaron Eikenberry <[email protected]> | 2017-08-03 00:10:42 -0500 |
| commit | f2f0769d70930533c9fffaf7bbb9adba477ef466 (patch) | |
| tree | 1561aa091cb3a99d34333b873e9572eaec314912 /tests | |
| parent | fixes lint error (diff) | |
| download | pywal-f2f0769d70930533c9fffaf7bbb9adba477ef466.tar.xz pywal-f2f0769d70930533c9fffaf7bbb9adba477ef466.zip | |
adds import to it's own line
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_main.py b/tests/test_main.py index d3dbcac..9262c8f 100644 --- a/tests/test_main.py +++ b/tests/test_main.py @@ -2,7 +2,8 @@ import unittest from unittest.mock import MagicMock -from pywal import __main__, reload +from pywal import __main__ +from pywal import reload from pywal.settings import CACHE_DIR |