From 385d97908e9cd4c9c19df3f06ae6cb94764e9445 Mon Sep 17 00:00:00 2001
From: Tom Teichler <tom.teichler@teckids.org>
Date: Sat, 2 May 2020 23:27:17 +0200
Subject: [PATCH] [Reformat] flake8

---
 aleksis/core/mixins.py | 2 +-
 aleksis/core/tables.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/aleksis/core/mixins.py b/aleksis/core/mixins.py
index 6da2f0564..5324b5e63 100644
--- a/aleksis/core/mixins.py
+++ b/aleksis/core/mixins.py
@@ -17,7 +17,7 @@ from rules.contrib.admin import ObjectPermissionsModelAdmin
 
 
 @reversion.register()
-class ExtensibleModel():
+class ExtensibleModel:
     """Base model for all objects in AlekSIS apps.
 
     This base model ensures all objects in AlekSIS apps fulfill the
diff --git a/aleksis/core/tables.py b/aleksis/core/tables.py
index 74566fc4b..7bc4e4e14 100644
--- a/aleksis/core/tables.py
+++ b/aleksis/core/tables.py
@@ -3,7 +3,7 @@ from django_tables2.utils import A
 
 
 class PersonsTable(tables.Table):
-    """Table to list persons"""
+    """Table to list persons."""
 
     class Meta:
         attrs = {"class": "table table-striped table-bordered table-hover table-responsive-xl"}
@@ -13,7 +13,7 @@ class PersonsTable(tables.Table):
 
 
 class GroupsTable(tables.Table):
-    """Table to list groups"""
+    """Table to list groups."""
 
     class Meta:
         attrs = {"class": "table table-striped table-bordered table-hover table-responsive-xl"}
-- 
GitLab