Skip to content

Commit

Permalink
fix: api code formatted using black
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjibansg committed Oct 16, 2023
1 parent 417b154 commit 75e05d4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions api/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@
import jwt
import substrait_validator as sv
from duckdb import DuckDBPyConnection
from fastapi import (Depends, FastAPI, File, Form, HTTPException, UploadFile,
status)
from fastapi import Depends, FastAPI, File, Form, HTTPException, UploadFile, status
from fastapi.middleware.trustedhost import TrustedHostMiddleware
from fastapi.openapi.utils import get_openapi
from fastapi.security import OAuth2PasswordBearer
from fastapi_health import health
from loguru import logger

from backend.duckdb import (CheckDuckDBConnection, DeleteTableFromDuckDB,
DuckDBConnection, ExecuteDuckDb, ParseFromDuckDB)
from backend.duckdb import (
CheckDuckDBConnection,
DeleteTableFromDuckDB,
DuckDBConnection,
ExecuteDuckDb,
ParseFromDuckDB,
)
from backend.ttl_cache import TTL_Cache

app = FastAPI()
Expand Down

0 comments on commit 75e05d4

Please sign in to comment.