Fixed doc

This commit is contained in:
agres
2025-03-19 01:07:42 +01:00
parent c3e3db87cc
commit 12096b2ec0
+7 -7
View File
@@ -1,16 +1,16 @@
import dotenv
import time
from urllib.parse import urlencode, urlparse, parse_qs
from http.server import BaseHTTPRequestHandler, HTTPServer
import requests
import os
import json import json
import os
import time
from http.server import BaseHTTPRequestHandler, HTTPServer
from urllib.parse import parse_qs, urlencode, urlparse
import dotenv
import requests
TOKEN_FILE_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'env', 'tokens.json') TOKEN_FILE_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'env', 'tokens.json')
def authenticate(scope: str) -> tuple: def authenticate(scope: str) -> str:
""" """
This function authenticates the user and returns the access token This function authenticates the user and returns the access token