Skip to content

Commit

Permalink
Disable unnecessary warning urllib3 (#176)
Browse files Browse the repository at this point in the history
* Disabling the urllib https warnings; we understand the situation and am comfortable with the current setup

* made sure to adjust the import order as the linter requests
  • Loading branch information
SeriousHorncat authored Jun 12, 2024
1 parent cd142be commit 01e1bde
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion backend/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@
"""
import logging
import logging.config

from os import path
import urllib3

from fastapi.middleware.cors import CORSMiddleware
from fastapi import FastAPI

from .config import get_settings
from .routers import analysis_router, annotation_router, auth_router

urllib3.disable_warnings()

DESCRIPTION = """
rosalution REST API assists researchers study 🧬 variation in patients πŸ§‘πŸΎβ€πŸ€β€πŸ§‘πŸΌ
by helping select candidate animal models πŸ€πŸπŸ πŸͺ± to replicate the variation
Expand Down

0 comments on commit 01e1bde

Please sign in to comment.