From 46b6937bb164bd14ca4ad60e089611e338a300a1 Mon Sep 17 00:00:00 2001 From: benarc Date: Wed, 24 Apr 2024 21:59:13 +0100 Subject: [PATCH] ruff ruff --- views_api.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/views_api.py b/views_api.py index e07ff05..1cbf8d4 100644 --- a/views_api.py +++ b/views_api.py @@ -1,10 +1,11 @@ -from fastapi import APIRouter, Depends -from loguru import logger -from .models import Example from http import HTTPStatus + import httpx +from fastapi import APIRouter, Depends from fastapi.exceptions import HTTPException -from lnbits.decorators import get_key_type, WalletTypeInfo +from lnbits.decorators import WalletTypeInfo, get_key_type + +from .models import Example # views_api.py is for you API endpoints that could be hit by another service