From 5378b74df7376010466f68781f11f1fd0df975ae Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Fri, 15 Mar 2024 12:12:05 -0400 Subject: [PATCH] dashboard: Fix typo in type annotation --- dashboard/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/__init__.py b/dashboard/__init__.py index cdeb545..18ab5dc 100644 --- a/dashboard/__init__.py +++ b/dashboard/__init__.py @@ -33,7 +33,7 @@ class DashboardFragment: class LinksCardDashboardFragment(DashboardFragment): template = "dashboard/links_card.dj.html" - links: [Link] = [] + links: list[Link] = [] @property def context(self):