Skip to content

Commit 6224dea

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 24c1476 commit 6224dea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ckeditor_filebrowser_filer/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def url_reverse(request):
3232
url_name = data.get("url_name")
3333
try:
3434
path = urls.reverse(url_name, args=data.getlist("args"))
35-
(view_func, args, kwargs) = urls.resolve(path)
35+
view_func, args, kwargs = urls.resolve(path)
3636
return http.HttpResponse(path, content_type="text/plain")
3737
except urls.NoReverseMatch:
3838
return http.HttpResponse("Error", content_type="text/plain")

0 commit comments

Comments
 (0)