@cryptotaxi247 / CoPilot / commits / e4203b53

precommit fixes

Taylor committed Feb 14, 2024 at 18:12 UTC e4203b5399419b50504a7548883a78e7ca499b6e
1 file changed +1 -6
backend/app/connectors/grafana/utils/universal.py
+1 -6
@@ -10,12 +10,7 @@ from app.connectors.utils import get_connector_info_from_db
10 from app.db.db_session import get_db_session
11
12
13 -async def construct_grafana_url(
14 - connector_url: str,
15 - username: str,
16 - password: str,
17 - verify: bool = False
18 -) -> str:
13 +async def construct_grafana_url(connector_url: str, username: str, password: str, verify: bool = False) -> str:
14 """
15 Constructs a Grafana URL with embedded credentials.
16