Skip to content

Commit 715f37d

Browse files
committed
lint
1 parent 0969820 commit 715f37d

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

code/function/api/v1/api_v1.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@
22
from function.api.v1.endpoints import heartbeat, sample
33

44
api_v1_router = APIRouter()
5-
api_v1_router.include_router(
6-
sample.router, prefix="/landingZone", tags=["sample"]
7-
)
5+
api_v1_router.include_router(sample.router, prefix="/landingZone", tags=["sample"])
86
api_v1_router.include_router(heartbeat.router, prefix="/health", tags=["health"])

code/function/api/v1/endpoints/sample.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
from typing import Any
22

33
from fastapi import APIRouter
4-
from function.models.sample import (
5-
SampleRequest,
6-
SampleResponse,
7-
)
4+
from function.models.sample import SampleRequest, SampleResponse
85
from function.utils import setup_logging
96

107
logger = setup_logging(__name__)

0 commit comments

Comments
 (0)