From 88e87809c31b71ede6b74f9d6df4f461670ef7a1 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Fri, 1 Nov 2024 17:23:39 -0300 Subject: [PATCH] refactor: remove unused import --- app/apps/transactions/templatetags/currency_display.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/apps/transactions/templatetags/currency_display.py b/app/apps/transactions/templatetags/currency_display.py index 2da28cc..20d05d1 100644 --- a/app/apps/transactions/templatetags/currency_display.py +++ b/app/apps/transactions/templatetags/currency_display.py @@ -1,7 +1,6 @@ from django import template from django.utils.formats import number_format -from apps.transactions.models import Transaction register = template.Library()