Skip to content

Commit e3eedd4

Browse files
authored
Merge pull request #1247 from microsoft/kyled/ActivityPrompt
Make ActivityPrompt a normal class - remove ABC
2 parents 35bbf9f + b632b84 commit e3eedd4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/activity_prompt.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
from abc import ABC
54
from typing import Callable, Dict
65

76
from botbuilder.core import TurnContext
@@ -20,7 +19,7 @@
2019
from .prompt_validator_context import PromptValidatorContext
2120

2221

23-
class ActivityPrompt(Dialog, ABC):
22+
class ActivityPrompt(Dialog):
2423
"""
2524
Waits for an activity to be received.
2625

0 commit comments

Comments
 (0)