Skip to content

Commit c623b79

Browse files
Make pre-commit happy
1 parent ceea218 commit c623b79

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tests/spot/test_spot_earn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ class TestSpotEarn:
2727
TEST_STRATEGY_ID = "ESRFUO3-Q62XD-WIOIL7"
2828
TEST_ASSET = "DOT"
2929

30-
def _assert_successful_operation(self: Self, result: Any) -> None: # noqa: ANN401
30+
def _assert_successful_operation(self: Self, result: Any) -> None:
3131
"""Helper method to assert successful operations for allocation/deallocation."""
3232
assert isinstance(result, bool)
3333

34-
def _assert_successful_query(self: Self, result: Any) -> None: # noqa: ANN401
34+
def _assert_successful_query(self: Self, result: Any) -> None:
3535
"""Helper method to assert successful query operations."""
3636
assert is_not_error(result)
3737

tests/spot/test_spot_funding.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,19 @@ class TestSpotFunding:
3838

3939
def _assert_successful_list_response(
4040
self: Self,
41-
result: Any, # noqa: ANN401
41+
result: Any,
4242
) -> None:
4343
"""Helper method to assert successful list responses."""
4444
assert isinstance(result, list)
4545

4646
def _assert_successful_dict_response(
4747
self: Self,
48-
result: Any, # noqa: ANN401
48+
result: Any,
4949
) -> None:
5050
"""Helper method to assert successful dict responses."""
5151
assert isinstance(result, dict)
5252

53-
def _assert_not_error(self: Self, result: Any) -> None: # noqa: ANN401
53+
def _assert_not_error(self: Self, result: Any) -> None:
5454
"""Helper method to assert responses without errors."""
5555
assert is_not_error(result)
5656

tests/spot/test_spot_market.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TestSpotMarket:
3232
TEST_SINCE = "1616663618"
3333
TEST_COUNT = 2
3434

35-
def _assert_not_error(self: Self, result: Any) -> None: # noqa: ANN401
35+
def _assert_not_error(self: Self, result: Any) -> None:
3636
"""Helper method to assert responses without errors."""
3737
assert is_not_error(result)
3838

0 commit comments

Comments
 (0)