From 1a823c47b4e87c933fa804065744eacdb70c26b4 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Tue, 27 Oct 2020 22:52:02 +0000 Subject: [PATCH 1/4] Restyled by autopep8 --- libraries/botframework-connector/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index 6e5057037..09ca901ff 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -26,7 +26,8 @@ description="Microsoft Bot Framework Bot Builder SDK for Python.", author="Microsoft", url="https://www.github.com/Microsoft/botbuilder-python", - keywords=["BotFrameworkConnector", "bots", "ai", "botframework", "botbuilder"], + keywords=["BotFrameworkConnector", "bots", + "ai", "botframework", "botbuilder"], install_requires=REQUIRES, packages=[ "botframework.connector", From b7e3775990f45340b74a69cc410bcbc12dbe2fad Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Tue, 27 Oct 2020 22:52:03 +0000 Subject: [PATCH 2/4] Restyled by black --- libraries/botframework-connector/setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index 09ca901ff..6e5057037 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -26,8 +26,7 @@ description="Microsoft Bot Framework Bot Builder SDK for Python.", author="Microsoft", url="https://www.github.com/Microsoft/botbuilder-python", - keywords=["BotFrameworkConnector", "bots", - "ai", "botframework", "botbuilder"], + keywords=["BotFrameworkConnector", "bots", "ai", "botframework", "botbuilder"], install_requires=REQUIRES, packages=[ "botframework.connector", From 3ad075f982b713f86851144dcfeda91b570c8cd8 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Tue, 27 Oct 2020 22:52:05 +0000 Subject: [PATCH 3/4] Restyled by isort --- libraries/botframework-connector/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index 6e5057037..1d64b933f 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -1,6 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. import os + from setuptools import setup NAME = "botframework-connector" From 5f07e0bff7194e627c2cb5648e81c6d9d01d2019 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Tue, 27 Oct 2020 22:52:13 +0000 Subject: [PATCH 4/4] Restyled by yapf --- libraries/botframework-connector/setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libraries/botframework-connector/setup.py b/libraries/botframework-connector/setup.py index 1d64b933f..c170aec0f 100644 --- a/libraries/botframework-connector/setup.py +++ b/libraries/botframework-connector/setup.py @@ -5,7 +5,8 @@ from setuptools import setup NAME = "botframework-connector" -VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.10.0" +VERSION = os.environ[ + "packageVersion"] if "packageVersion" in os.environ else "4.10.0" REQUIRES = [ "msrest==0.6.10", "requests==2.23.0", @@ -27,7 +28,9 @@ description="Microsoft Bot Framework Bot Builder SDK for Python.", author="Microsoft", url="https://www.github.com/Microsoft/botbuilder-python", - keywords=["BotFrameworkConnector", "bots", "ai", "botframework", "botbuilder"], + keywords=[ + "BotFrameworkConnector", "bots", "ai", "botframework", "botbuilder" + ], install_requires=REQUIRES, packages=[ "botframework.connector",