From 42acaba87c2d87cff58c67c49037ccf6af3c4bca Mon Sep 17 00:00:00 2001 From: geoffrey45 Date: Fri, 14 Jan 2022 21:00:27 +0300 Subject: [PATCH] =?UTF-8?q?major=20refactoring=20=F0=9F=98=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - move instances to separate module - import functions as modules - add docstrings to helper functions - add threaded populate() function - remove unused functions and files - add typing info to helper functions - move large functions to separate module - Introduce independent search input to directory view (demo) - Handle Ctrl + F (yaay 💪😜) - few *more* forgotten changes to the client - phew! --- server/app/instances.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/app/instances.py b/server/app/instances.py index 325819e..1a733f1 100644 --- a/server/app/instances.py +++ b/server/app/instances.py @@ -2,4 +2,6 @@ from app.models import AllSongs from app.models import Artists songs_instance = AllSongs() -artist_instance = Artists() \ No newline at end of file +artist_instance = Artists() + +"" \ No newline at end of file