File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments