make format everything (#743)

This commit is contained in:
calle
2022-07-16 14:23:03 +02:00
committed by GitHub
parent 69516bb751
commit f4e7d62ca3
60 changed files with 182 additions and 186 deletions
+5 -5
View File
@@ -1,30 +1,30 @@
imports_ok = True
try:
from google import protobuf
import grpc
from google import protobuf
except ImportError: # pragma: nocover
imports_ok = False
import binascii
import base64
import binascii
import hashlib
from os import environ, error, getenv
from typing import Optional, Dict, AsyncGenerator
from typing import AsyncGenerator, Dict, Optional
from loguru import logger
from .macaroon import load_macaroon, AESCipher
from .macaroon import AESCipher, load_macaroon
if imports_ok:
import lnbits.wallets.lnd_grpc_files.lightning_pb2 as ln
import lnbits.wallets.lnd_grpc_files.lightning_pb2_grpc as lnrpc
from .base import (
StatusResponse,
InvoiceResponse,
PaymentResponse,
PaymentStatus,
StatusResponse,
Wallet,
)