From 4d7e552681c73fe8ac8bf3651b4258d6e9c8db9d Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Sun, 16 Feb 2020 22:29:27 +0100 Subject: [PATCH] One import was missing --- apps/note/tables.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/note/tables.py b/apps/note/tables.py index 4d4e9608..31cefe41 100644 --- a/apps/note/tables.py +++ b/apps/note/tables.py @@ -1,5 +1,7 @@ #!/usr/bin/env python import django_tables2 as tables +from django.db.models import F + from .models.transactions import Transaction