[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2025-09-23 06:31:26 +00:00 committed by GitHub
parent 2c2069f77c
commit f486d1bcee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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,

View File

@ -1,7 +1,7 @@
"""Comprehensive tests for email OAuth implementation"""
import base64
from typing import Optional, Union
from typing import Union
import pytest