cleanup/rm pylint ignores
This commit is contained in:
@ -12,8 +12,6 @@ from uuid import uuid4 as uuid
|
||||
from typing import Optional
|
||||
from fastapi import FastAPI, BackgroundTasks, Request, Response, HTTPException
|
||||
from fastapi.responses import RedirectResponse, JSONResponse
|
||||
# pylint: disable=bare-except, broad-exception-caught, invalid-name
|
||||
|
||||
|
||||
"""
|
||||
TODO:
|
||||
@ -23,7 +21,7 @@ TODO:
|
||||
class Radio(FastAPI):
|
||||
"""Radio Endpoints"""
|
||||
def __init__(self, app: FastAPI,
|
||||
my_util, constants) -> None: # pylint: disable=super-init-not-called
|
||||
my_util, constants) -> None:
|
||||
self.app: FastAPI = app
|
||||
self.util = my_util
|
||||
self.constants = constants
|
||||
|
Reference in New Issue
Block a user