hound fixes

This commit is contained in:
Ondřej Samohel 2020-09-29 12:23:18 +02:00 committed by Ondrej Samohel
parent 9535948c05
commit f7c45301da
No known key found for this signature in database
GPG key ID: 8A29C663C672C2B7
3 changed files with 2 additions and 3 deletions

View file

@ -20,7 +20,6 @@ from .mongo import (
from .user_settings import IniSettingRegistry
from .user_settings import JSONSettingRegistry
from .user_settings import PypeSettingsRegistry
terminal = Terminal

View file

@ -60,4 +60,5 @@ def test_find_pype(fix_bootstrap):
assert result is not None, "no Pype version found"
# latest item in `result` should be latest version found.
assert list(result.values())[-1] == os.path.join(
fix_bootstrap.data_dir, test_versions[3]), "not a latest version of Pype"
fix_bootstrap.data_dir, test_versions[3]
), "not a latest version of Pype"

View file

@ -1,7 +1,6 @@
import pytest
from pype.lib import IniSettingRegistry
from pype.lib import JSONSettingRegistry
from pype.lib import PypeSettingsRegistry
from uuid import uuid4
import configparser