From 7db396aad9d837ceedeb546f6a093146f4c488f5 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Mon, 31 Oct 2022 15:26:27 +0000 Subject: [PATCH] follow-up prev: indentations should not use tabs in *.py re https://github.com/spesmilo/electrum/pull/8044 --- .cirrus.yml | 2 +- electrum/commands.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 484635a70..293c1880b 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -149,7 +149,7 @@ task: matrix: - name: Flake8 Mandatory env: - ELECTRUM_LINTERS: E9,F63,F7,F82 + ELECTRUM_LINTERS: E9,F63,F7,F82,W191 - name: Flake8 Non-Mandatory env: ELECTRUM_LINTERS: E,F,W,C90 diff --git a/electrum/commands.py b/electrum/commands.py index 27a0c98ce..62f1cab05 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -204,7 +204,7 @@ class Commands: """ network info """ net_params = self.network.get_parameters() response = { - 'network': constants.net.NET_NAME, + 'network': constants.net.NET_NAME, 'path': self.network.config.path, 'server': net_params.server.host, 'blockchain_height': self.network.get_local_height(),