diff --git a/scipost_django/finances/views.py b/scipost_django/finances/views.py index 95c04df8e7e28a25590dc55b5f3b9248500a26a6..f859482aefda387e22aa73017dc5eb72e0ea11fe 100644 --- a/scipost_django/finances/views.py +++ b/scipost_django/finances/views.py @@ -266,9 +266,6 @@ def country_level_data(request): countrydatalist.sort(key=lambda country: country["impact_on_reserves"]) if reverse_ordering == "true": countrydatalist.reverse() - print( - f"{reverse_ordering = } {type(reverse_ordering) = } {reverse_ordering == True}" - ) context["countrydata"] = countrydatalist return render(request, "finances/country_level_data.html", context)