From 4e2b1de0c1e061cbd4c253380776ddf7eb44bcee Mon Sep 17 00:00:00 2001 From: Ben Pirt Date: Fri, 15 Dec 2023 08:51:38 +0000 Subject: [PATCH] Add stub for typing of Dict --- platforms/micropython/typing.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platforms/micropython/typing.py b/platforms/micropython/typing.py index 55e48d8..40c29d4 100644 --- a/platforms/micropython/typing.py +++ b/platforms/micropython/typing.py @@ -6,4 +6,8 @@ class Union: pass +class Dict: + pass + + TYPE_CHECKING = False