From: Marcel van der Veldt Date: Tue, 2 Aug 2022 20:25:56 +0000 (+0200) Subject: fix linting X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=182b326ee6688b6e649ce80d329a00de29b927b5;p=music-assistant-server.git fix linting --- diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 7368f5cc..00000000 --- a/.dockerignore +++ /dev/null @@ -1,8 +0,0 @@ -.github -.mypy_cache -.tox -.git -build -dist -venv -**/__pycache__ diff --git a/.vscode/settings.json b/.vscode/settings.json index 0460b1ae..0d511eaf 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,14 +1,10 @@ { - "python.linting.pylintEnabled": true, "python.linting.pylintArgs": ["--rcfile=${workspaceFolder}/setup.cfg"], "python.linting.enabled": true, - "python.pythonPath": ".venv/bin/python3.9", "python.linting.flake8Enabled": true, "python.linting.flake8Args": ["--config=${workspaceFolder}/setup.cfg"], - "python.linting.mypyEnabled": false, + "python.linting.mypyEnabled": true, "python.testing.pytestArgs": [ "tests" - ], - "python.testing.unittestEnabled": false, - "python.testing.pytestEnabled": true, + ] } diff --git a/music_assistant/controllers/__init__.py b/music_assistant/controllers/__init__.py new file mode 100644 index 00000000..49fe05d5 --- /dev/null +++ b/music_assistant/controllers/__init__.py @@ -0,0 +1 @@ +"""Package with controllers."""