diff --git a/accounting/views.py b/accounting/views.py index 788326c..a8a155a 100644 --- a/accounting/views.py +++ b/accounting/views.py @@ -932,8 +932,8 @@ class TransactionSortFormView(FormView): def get_success_url(self) -> str: """Returns the URL on success.""" return self.request.GET.get("r")\ - or reverse("accounting:home", - current_app=self.request.resolver_match.namespace) + or reverse("accounting:home", + current_app=self.request.resolver_match.namespace) @method_decorator(require_GET, name="dispatch")