mirror of https://github.com/langgenius/dify.git
[autofix.ci] apply automated fixes
This commit is contained in:
parent
2c2069f77c
commit
f486d1bcee
|
|
@ -3,7 +3,7 @@
|
|||
import base64
|
||||
import urllib.parse
|
||||
from dataclasses import dataclass
|
||||
from typing import Optional, Union
|
||||
from typing import Union
|
||||
|
||||
from .oauth_http_client import OAuthHTTPClient, OAuthHTTPClientProtocol
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
"""HTTP client abstraction for OAuth requests"""
|
||||
|
||||
from abc import ABC, abstractmethod
|
||||
from typing import Optional, Union
|
||||
from typing import Union
|
||||
|
||||
import requests
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ import logging
|
|||
import smtplib
|
||||
from email.mime.multipart import MIMEMultipart
|
||||
from email.mime.text import MIMEText
|
||||
from typing import Optional
|
||||
|
||||
from .smtp_connection import (
|
||||
SMTPConnectionFactory,
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
"""Comprehensive tests for email OAuth implementation"""
|
||||
|
||||
import base64
|
||||
from typing import Optional, Union
|
||||
from typing import Union
|
||||
|
||||
import pytest
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue