Linting
All checks were successful
Lint / lint (pull_request) Successful in 6s

This commit is contained in:
Logan Cusano
2025-06-29 15:53:15 -04:00
parent fb9f8a680f
commit ddfa9fc2a3
4 changed files with 16 additions and 17 deletions

View File

@@ -5,7 +5,8 @@ from internal.logger import create_logger
LOGGER = create_logger(__name__)
def create_bot_router(bot_manager: DiscordBotManager): # Function to create router
# Function to create router
def create_bot_router(bot_manager: DiscordBotManager):
router = APIRouter()
# API Endpoints
@@ -53,5 +54,5 @@ def create_bot_router(bot_manager: DiscordBotManager): # Function to create rout
"active_token": bot_manager.token
}
return status
return router # Return the configured router
return router