Linting: Black

Lets enforce black across the repo. This change fixes the formatting to
black standards to pass the CI test.

Signed-off-by: Benjamin Copeland <ben.copeland@linaro.org>
diff --git a/mkdocs_plugin/setup.py b/mkdocs_plugin/setup.py
index e5094d2..da154d0 100644
--- a/mkdocs_plugin/setup.py
+++ b/mkdocs_plugin/setup.py
@@ -2,35 +2,32 @@
 
 
 setup(
-    name='mkdocs-test-definitions-plugin',
-    version='1.2',
-    description='An MkDocs plugin that converts LAVA test definitions to documentation',
-    long_description='',
-    keywords='mkdocs python markdown wiki',
-    url='https://github.com/linaro/test-definitions',
-    author='Milosz Wasilewski',
-    author_email='milosz.wasilewski@linaro.org',
-    license='GPL',
-    python_requires='>=3.5',
-    install_requires=[
-        'mkdocs>=1.1',
-        'tags-macros-plugin'
-    ],
+    name="mkdocs-test-definitions-plugin",
+    version="1.2",
+    description="An MkDocs plugin that converts LAVA test definitions to documentation",
+    long_description="",
+    keywords="mkdocs python markdown wiki",
+    url="https://github.com/linaro/test-definitions",
+    author="Milosz Wasilewski",
+    author_email="milosz.wasilewski@linaro.org",
+    license="GPL",
+    python_requires=">=3.5",
+    install_requires=["mkdocs>=1.1", "tags-macros-plugin"],
     classifiers=[
-        'Development Status :: 5 - Production/Stable',
-        'Intended Audience :: Developers',
-        'Intended Audience :: Information Technology',
-        'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
-        'Programming Language :: Python',
-        'Programming Language :: Python :: 3 :: Only',
-        'Programming Language :: Python :: 3.5',
-        'Programming Language :: Python :: 3.6',
-        'Programming Language :: Python :: 3.7'
+        "Development Status :: 5 - Production/Stable",
+        "Intended Audience :: Developers",
+        "Intended Audience :: Information Technology",
+        "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
+        "Programming Language :: Python",
+        "Programming Language :: Python :: 3 :: Only",
+        "Programming Language :: Python :: 3.5",
+        "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
     ],
     packages=find_packages(),
     entry_points={
-        'mkdocs.plugins': [
-            'linaro-test-definitions = testdefinitionsmkdocs:LinaroTestDefinitionsMkDocsPlugin'
+        "mkdocs.plugins": [
+            "linaro-test-definitions = testdefinitionsmkdocs:LinaroTestDefinitionsMkDocsPlugin"
         ]
-    }
+    },
 )