diff --git a/pantos/cli/__main__.py b/pantos/cli/__main__.py index 886263e..cb87dfa 100644 --- a/pantos/cli/__main__.py +++ b/pantos/cli/__main__.py @@ -264,8 +264,8 @@ def _print_bids( print('Pantos service node bids for token transfers from the\n' f'source blockchain {source_blockchain.name} to the destination ' f'blockchain {destination_blockchain.name}:\n') # noqa E231 - print('Service node\t\t\t\t\tBid ID\tTime\tFee') - print('\t\t\t\t\t\t\t(s)\t(PAN)') + print('Service node\t\t\t\t\tTime\tFee') + print('\t\t\t\t\t\t(s)\t(PAN)') print('===================================' '==================================') for service_node_address, bids in service_node_bids.items(): diff --git a/pyproject.toml b/pyproject.toml index b9e478e..e233b2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pantos-client-cli" -version = "1.1.2" +version = "1.1.3" description = "Client CLI for engaging with the Pantos system" authors = ["Pantos GmbH "] license = "GPL-3.0-only" diff --git a/tests/test__main__.py b/tests/test__main__.py index ff3ff5c..d852342 100644 --- a/tests/test__main__.py +++ b/tests/test__main__.py @@ -238,8 +238,8 @@ def test_bids(mock_retrieve_service_node_bids, mock_cli_config, 'Pantos service node bids for token transfers from the\n' 'source blockchain BNB_CHAIN to the destination blockchain ETHEREUM:\n' '\n' - 'Service node\t\t\t\t\tBid ID\tTime\tFee\n' - '\t\t\t\t\t\t\t(s)\t(PAN)\n' + 'Service node\t\t\t\t\tTime\tFee\n' + '\t\t\t\t\t\t(s)\t(PAN)\n' '====================================================================' '=\n0x9C20a03E230e9733561E4bab598409bB6d5AED12\t600\t2\n' '0x9C20a03E230e9733561E4bab598409bB6d5AED12\t1200\t1.5\n') @@ -269,8 +269,8 @@ def test_bids_no_bids_available(mock_retrieve_service_node_bids, 'Pantos service node bids for token transfers from the\n' 'source blockchain BNB_CHAIN to the destination blockchain ETHEREUM:\n' '\n' - 'Service node\t\t\t\t\tBid ID\tTime\tFee\n' - '\t\t\t\t\t\t\t(s)\t(PAN)\n' + 'Service node\t\t\t\t\tTime\tFee\n' + '\t\t\t\t\t\t(s)\t(PAN)\n' '====================================================================' '=\n')