Skip to content

Commit

Permalink
Using List from typing
Browse files Browse the repository at this point in the history
  • Loading branch information
gandiddi committed Oct 3, 2024
1 parent fa61a60 commit 89f9465
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from typing import List
from botbuilder.schema import Activity
from botbuilder.schema.teams import (
NotificationInfo,
Expand Down Expand Up @@ -87,7 +88,7 @@ def teams_get_meeting_info(activity: Activity) -> TeamsMeetingInfo:
return None


def teams_get_team_on_behalf_of(activity: Activity) -> list[OnBehalfOf]:
def teams_get_team_on_behalf_of(activity: Activity) -> List[OnBehalfOf]:
if not activity:
return None

Expand Down

0 comments on commit 89f9465

Please sign in to comment.