8000 fixing linting · ericmicrofocus/botbuilder-python@74bcc5e · GitHub
[go: up one dir, main page]

Skip to content

Commit 74bcc5e

Browse files
committed
fixing linting
1 parent 55aa761 commit 74bcc5e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

libraries/botframework-connector/botframework/connector/teams/teams_connector_client.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@
1111

1212
from msrest.service_client import SDKClient
1313
from msrest import Configuration, Serializer, Deserializer
14+
from botbuilder.schema import models
1415
from .version import VERSION
15-
from msrest.exceptions import HttpOperationError
1616
from .operations.teams_operations import TeamsOperations
17-
from . import models
1817

1918

2019
class TeamsConnectorClientConfiguration(Configuration):
@@ -43,11 +42,13 @@ def __init__(self, credentials, base_url=None):
4342

4443

4544
class TeamsConnectorClient(SDKClient):
46-
"""The Bot Connector REST API extension for Microsoft Teams allows your bot to perform extended operations on to Microsoft Teams channel configured in the
47-
[Bot Framework Developer Portal](https://dev.botframework.com). The Connector service uses industry-standard REST and JSON over HTTPS.
48-
Client libraries for this REST API are available. See below for a list.
45+
"""The Bot Connector REST API extension for Microsoft Teams allows your bot to perform extended
46+
operations on to Microsoft Teams channel configured in the
47+
[Bot Framework Developer Portal](https://dev.botframework.com). The Connector service uses
48+
industry-standard REST and JSON over HTTPS. Client libraries for this REST API are available. See below for a list.
4949
Authentication for both the Bot Connector and Bot State REST APIs is accomplished with JWT Bearer tokens, and is
50-
described in detail in the [Connector Authentication](https://docs.botframework.com/en-us/restapi/authentication) document.
50+
described in detail in the [Connector Authentication](https://docs.botframework.com/en-us/restapi/authentication)
51+
document.
5152
# Client Libraries for the Bot Connector REST API
5253
* [Bot Builder for C#](https://docs.botframework.com/en-us/csharp/builder/sdkreference/)
5354
* [Bot Builder for Node.js](https://docs.botframework.com/en-us/node/builder/overview/)

0 commit comments

Comments
 (0)
0