Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.

import re
from typing import Dict, Optional
from typing import Optional
from microsoft_agents.hosting.core import (
AgentAuthConfiguration,
AccessTokenProviderBase,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import aiohttp
import logging
from typing import AsyncIterable, Callable, Optional
from typing import AsyncIterable, Optional

from microsoft_agents.activity import Activity, ActivityTypes, ConversationAccount

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from __future__ import annotations
from http import HTTPStatus
from typing import Awaitable
from pydantic import BaseModel

from microsoft_agents.activity import TurnContextProtocol
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

from __future__ import annotations
import logging
import jwt
from typing import Optional

from microsoft_agents.activity import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

from microsoft_agents.hosting.core.telemetry import (
attributes,
AttributeMap,
SimpleSpanWrapper,
format_scopes,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from __future__ import annotations

from asyncio import sleep
from abc import ABC
from copy import Error
from http import HTTPStatus
Expand All @@ -27,7 +26,6 @@
)
from microsoft_agents.hosting.core.connector import (
ConnectorClientBase,
UserTokenClientBase,
ConnectorClient,
UserTokenClient,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from uuid import uuid4
from functools import partial
from typing import Type

from microsoft_agents.activity import AgentsModel
from microsoft_agents.hosting.core.storage import Storage, StoreItem
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from typing import Protocol, Optional

from microsoft_agents.activity import (
AttachmentInfo,
ConversationResourceResponse,
ConversationsResult,
ConversationParameters,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# Licensed under the MIT License.

from abc import ABC
from typing import Protocol, runtime_checkable

from ._type_aliases import JSON

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from threading import Lock
from datetime import datetime, timezone
from typing import List
from .transcript_logger import TranscriptLogger, PagedResult
from .transcript_info import TranscriptInfo
from microsoft_agents.activity import Activity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from abc import ABC, abstractmethod
from abc import abstractmethod
from datetime import datetime, timezone
from microsoft_agents.activity import Activity
from .transcript_info import TranscriptInfo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
from opentelemetry import metrics, trace
from opentelemetry.trace import Tracer, Span

from microsoft_agents.activity import TurnContextProtocol

from .resource import SERVICE_NAME, SERVICE_VERSION
from .type_defs import SpanCallback

Expand Down
Loading