From 56ebb0fd0e9e2ff7dfc998d1fe4cc0106a2cc6cf Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 12 Mar 2022 03:40:50 +0100 Subject: [PATCH] ignore custom admin form --- InvenTree/users/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/users/admin.py b/InvenTree/users/admin.py index ba7638612a..39a7b1c9ee 100644 --- a/InvenTree/users/admin.py +++ b/InvenTree/users/admin.py @@ -78,7 +78,7 @@ class InvenTreeGroupAdminForm(forms.ModelForm): return instance -class RoleGroupAdmin(admin.ModelAdmin): +class RoleGroupAdmin(admin.ModelAdmin): # pragma: no cover """ Custom admin interface for the Group model """