From b94262cd832d73d1397c35e77dc00aa0bb9219e7 Mon Sep 17 00:00:00 2001 From: matograine <matograine@zaclys.net> Date: Mon, 13 Sep 2021 11:15:13 +0200 Subject: [PATCH] [mod] #410 remove useless asyncio import and pytest decorator --- silkaj/commands.py | 1 - tests/test_tui.py | 1 - 2 files changed, 2 deletions(-) diff --git a/silkaj/commands.py b/silkaj/commands.py index fbad7379..d3460a69 100644 --- a/silkaj/commands.py +++ b/silkaj/commands.py @@ -13,7 +13,6 @@ # You should have received a copy of the GNU Affero General Public License # along with Silkaj. If not, see <https://www.gnu.org/licenses/>. -from asyncio import sleep from collections import OrderedDict from operator import itemgetter from os import system diff --git a/tests/test_tui.py b/tests/test_tui.py index 3a08651f..972bfa60 100644 --- a/tests/test_tui.py +++ b/tests/test_tui.py @@ -53,7 +53,6 @@ def test_display_amount(message, amount, currency_symbol): ("To", "DBM6F5ChMJzpmkUdL5zD9UXKExmZGfQ1AgPDQy4MxSBw", ""), ], ) -@pytest.mark.asyncio def test_display_pubkey(message, pubkey, id, monkeypatch): monkeypatch.setattr(wot_tools, "is_member", patched_is_member) -- GitLab