From f35c1f3bfcc93a7fda9aae82348e8343f16f73ef Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 9 Oct 2022 23:40:34 +0200 Subject: [PATCH] make format --- tests/test_wallet.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_wallet.py b/tests/test_wallet.py index b5bc9a4..300896b 100644 --- a/tests/test_wallet.py +++ b/tests/test_wallet.py @@ -1,18 +1,18 @@ -from distutils.command.build_scripts import first_line_re import time +from distutils.command.build_scripts import first_line_re from re import S from typing import List + import pytest import pytest_asyncio -from cashu.core.helpers import async_unwrap +from cashu.core.base import Proof +from cashu.core.helpers import async_unwrap, sum_proofs from cashu.core.migrations import migrate_databases from cashu.wallet import migrations from cashu.wallet.wallet import Wallet from cashu.wallet.wallet import Wallet as Wallet1 from cashu.wallet.wallet import Wallet as Wallet2 -from cashu.core.base import Proof -from cashu.core.helpers import sum_proofs SERVER_ENDPOINT = "http://localhost:3338"