From 922cac4ccb881fa4364f970f0dce374c602cf759 Mon Sep 17 00:00:00 2001 From: bacon Date: Thu, 7 Mar 2024 23:27:17 +0300 Subject: [PATCH] fixed PEP8 E701 --- lib/Comands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Comands.py b/lib/Comands.py index f3a99f5..b4a4d68 100644 --- a/lib/Comands.py +++ b/lib/Comands.py @@ -20,7 +20,8 @@ def preload_checks(): async def list_files(fold: str = 'audio'): - if fold != 'audio': fold = f'audio/{fold}' + if fold != 'audio': + fold = f'audio/{fold}' fl = [] for filenames in os.walk(fold): fl.extend(filenames)