8000 pylint: Added send_activities and updated the logic · guidotorresmx/botbuilder-python@ab79e3c · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ab79e3c

Browse files
committed
pylint: Added send_activities and updated the logic
1 parent 0986575 commit ab79e3c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

libraries/botbuilder-ai/tests/luis/null_adapter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class NullAdapter(BotAdapter):
1111
"""
1212
This is a BotAdapter that does nothing on the Send operation, equivalent to piping to /dev/null.
1313
"""
14+
# pylint: disable=unused-argument
1415

1516
async def send_activities(
1617
self, context: TurnContext, activities: List[Activity]

libraries/botbuilder-core/tests/simple_adapter.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99

1010
class SimpleAdapter(BotAdapter):
11+
# pylint: disable=unused-argument
12+
1113
def __init__(self, call_on_send=None, call_on_update=None, call_on_delete=None):
1214
super(SimpleAdapter, self).__init__()
1315
self.test_aux = unittest.TestCase("__init__")

0 commit comments

Comments
 (0)
0