Skip to content
Snippets Groups Projects
Commit 1c7e6b93 authored by DAVID Axel's avatar DAVID Axel
Browse files

style: :rotating_light: Fix pylint warning

parent edb7a76b
No related branches found
No related tags found
No related merge requests found
......@@ -59,17 +59,19 @@ class VigenereAPIOpenAPIHandler(OpenAPIHandler):
json_spec_path = f"{api_route}/openapi.json"
yaml_spec_path = f"{api_route}/openapi.yaml"
super().__init__(
info=Info(
title="Vigenere-API",
version=str(version),
description = """
An API to use cipher, decipher and decrypt method with the Vigenere algorithm.
The Caesar algorithm is provided for the cipher method and decipher method.
It's a JSON-RPC API.
Powered by BlackSheep framework: https://www.neoteroi.dev/blacksheep/
""",
"""
super().__init__(
info=Info(
title="Vigenere-API",
version=str(version),
description=description,
contact=Contact(name="Axel DAVID", email="axel.david@etu.univ-amu.fr"),
license=License(name="GPL-3.0", url=f"{app_url}/LICENSE.md"),
),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment