From a05dfcbf3da6543d54836c5d5bc188b6c88b4917 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 5 Oct 2021 11:46:24 +0200 Subject: [PATCH] Linting Signed-off-by: Yohann D'ANELLO --- apps/member/tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/member/tables.py b/apps/member/tables.py index e2c93930..37c17b47 100644 --- a/apps/member/tables.py +++ b/apps/member/tables.py @@ -32,7 +32,7 @@ class ClubTable(tables.Table): 'class': 'table-row', 'id': lambda record: "row-" + str(record.pk), 'data-href': lambda record: record.pk, - 'style':'cursor:pointer', + 'style': 'cursor:pointer', } @@ -76,7 +76,7 @@ class UserTable(tables.Table): row_attrs = { 'class': 'table-row', 'data-href': lambda record: record.pk, - 'style':'cursor:pointer', + 'style': 'cursor:pointer', }