Linting issues
This commit is contained in:
parent
f4b7dd6518
commit
2adc62c8d4
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue