10348 | run ruff formatter

This commit is contained in:
jainanuj94
2024-07-25 00:04:06 +05:30
parent b09f9e8c12
commit 1b81de01b4
2 changed files with 8 additions and 4 deletions

View File

@@ -34,8 +34,9 @@ from tests.conftest import (
# Exclude RemotePairList and PercentVolumeChangePairList from tests.
# They have mandatory parameters, and requires special handling,
# which happens in test_remotepairlist and test_percentvolumechangepairlist.
TESTABLE_PAIRLISTS = [p for p in AVAILABLE_PAIRLISTS
if p not in ["RemotePairList", "PercentVolumeChangePairList"]]
TESTABLE_PAIRLISTS = [
p for p in AVAILABLE_PAIRLISTS if p not in ["RemotePairList", "PercentVolumeChangePairList"]
]
@pytest.fixture(scope="function")