From f9cd31457038559d338d08bcc4c686f06e0139c2 Mon Sep 17 00:00:00 2001 From: Hugo bessa Date: Thu, 7 Nov 2024 03:20:34 -0300 Subject: [PATCH] fixes error in dataclass --- vintasend/services/dataclasses.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vintasend/services/dataclasses.py b/vintasend/services/dataclasses.py index 473672b..54b9229 100644 --- a/vintasend/services/dataclasses.py +++ b/vintasend/services/dataclasses.py @@ -35,8 +35,8 @@ def __setitem__( int | float | str - | list["NotificationContextDict"] - | dict[str, "NotificationContextDict"] + | list + | dict ), ): raise TypeError("Value must be an int, float, str, list, or dict")