From 2adc62c8d4f8e9c5f5bccf3f47269e995212dd4a Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Wed, 19 Dec 2018 10:24:53 +0100 Subject: [PATCH] Linting issues --- api/funkwhale_api/common/search.py | 2 +- api/tests/test_import_audio_file.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/funkwhale_api/common/search.py b/api/funkwhale_api/common/search.py index 5fc6f6804c..70aecd632f 100644 --- a/api/funkwhale_api/common/search.py +++ b/api/funkwhale_api/common/search.py @@ -3,7 +3,7 @@ import re from django.db.models import Q -QUERY_REGEX = re.compile('(((?P<key>\w+):)?(?P<value>"[^"]+"|[\S]+))') +QUERY_REGEX = re.compile(r'(((?P<key>\w+):)?(?P<value>"[^"]+"|[\S]+))') def parse_query(query): diff --git a/api/tests/test_import_audio_file.py b/api/tests/test_import_audio_file.py index ce6aebbc3b..c6b8aea60e 100644 --- a/api/tests/test_import_audio_file.py +++ b/api/tests/test_import_audio_file.py @@ -134,7 +134,7 @@ def test_import_files_skip_if_path_already_imported(factories, mocker): ) call_command( - "import_files", str(library.uuid), path, async=False, interactive=False + "import_files", str(library.uuid), path, async_=False, interactive=False ) assert library.uploads.count() == 1 -- GitLab