tests: Run black in CI.

This commit is contained in:
tecnovert
2025-03-01 23:10:48 +02:00
parent 15b2038d65
commit 19968ed496
6 changed files with 23 additions and 21 deletions

View File

@@ -151,7 +151,9 @@ def page_bid(self, url_split, post_string):
)
def page_bids(self, url_split, post_string, sent=False, available=False, received=False):
def page_bids(
self, url_split, post_string, sent=False, available=False, received=False
):
server = self.server
swap_client = server.swap_client
swap_client.checkSystemStatus()

View File

@@ -145,7 +145,7 @@ def get_data_with_pagination(data, filters):
offset = filters.get("offset", 0)
limit = filters.get("limit", PAGE_LIMIT)
return data[offset:offset + limit]
return data[offset : offset + limit]
def getTxIdHex(bid, tx_type, suffix):