Skip to content
Snippets Groups Projects
Verified Commit 2adc62c8 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Linting issues

parent f4b7dd65
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment