From 459719c21e4ddd141c31a72702facac7bcd942ff Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Mon, 4 Oct 2021 15:27:05 -0400 Subject: [PATCH] Fixing Signed-off-by: Cliff Hill --- src/playlist/data/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playlist/data/base.py b/src/playlist/data/base.py index 0b66126..296b67e 100644 --- a/src/playlist/data/base.py +++ b/src/playlist/data/base.py @@ -31,7 +31,7 @@ class DataMeta(type): @property # type: ignore [no-redef,misc] @functools.cache - def Dict(cls: DataMeta) -> DataDict: # noqa: N802, DAR203 + def Dict(cls: DataMeta) -> DataDict: # noqa: N802 """The TypedDict definition for this class. This provides a type definition for data to be converted to/from the @@ -39,7 +39,7 @@ class DataMeta(type): Returns: dict[str, object]: The TypedDict for this object. - """ + """ # noqa: DAR203 fields = { name: str if type_ is datetime.datetime else type_ for name, type_ in cls.__annotations__.items()