From 81344842c3b49ce624cbff773ee930e03217a935 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 12:35:38 +0000 Subject: [PATCH] refactor: put docstring into a single line If a docstring fits in a single line (72 characters according to PEP8), it is recommended to have the quotes on the same line. --- hsf/engines.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hsf/engines.py b/hsf/engines.py index df599b2..9c946dc 100644 --- a/hsf/engines.py +++ b/hsf/engines.py @@ -41,9 +41,7 @@ def deepsparse_support() -> str: def print_deepsparse_support(): - """ - Prints DeepSparse Support Status. - """ + """Prints DeepSparse Support Status.""" print( "DeepSparse Optimization Status (minimal: AVX2 | partial: AVX512 | full: AVX512 VNNI):", deepsparse_support())