From 77d2c998d3d62d15fdab6c581ef9ad049d7cb4b4 Mon Sep 17 00:00:00 2001 From: David Kennedy Date: Mon, 15 Apr 2024 07:57:34 -0400 Subject: [PATCH] satisfying linter --- src/registrar/admin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/registrar/admin.py b/src/registrar/admin.py index b9114f6f5..fe0730d31 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -684,8 +684,8 @@ class ContactAdmin(ListHeaderAdmin): """Check if the Contact has a related User""" return obj.user is not None - user_exists.boolean = True - user_exists.short_description = "Is user" + user_exists.boolean = True # type: ignore + user_exists.short_description = "Is user" # type: ignore # We name the custom prop 'contact' because linter # is not allowing a short_description attr on it