From cba0965c59774aef2de642fe0b7d0bd7bc07d08f Mon Sep 17 00:00:00 2001 From: Jan Pieter Waagmeester Date: Tue, 17 Oct 2023 11:51:28 +0200 Subject: [PATCH] Use relative import --- django_tables2/columns/templatecolumn.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/django_tables2/columns/templatecolumn.py b/django_tables2/columns/templatecolumn.py index 4c97666b..c3036207 100644 --- a/django_tables2/columns/templatecolumn.py +++ b/django_tables2/columns/templatecolumn.py @@ -2,8 +2,7 @@ from django.template.loader import get_template from django.utils.html import strip_tags -from django_tables2.utils import call_with_appropriate - +from ..utils import call_with_appropriate from .base import Column, library