From 4a85cf0574d2b03d4f25b27384d275f949176707 Mon Sep 17 00:00:00 2001 From: Theodore Liu Date: Thu, 30 Jan 2020 15:09:18 -0500 Subject: [PATCH] Define the Expand operator --- mypy_extensions.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mypy_extensions.py b/mypy_extensions.py index 5f9d88e..165bfa6 100644 --- a/mypy_extensions.py +++ b/mypy_extensions.py @@ -164,3 +164,11 @@ def __getitem__(self, args): FlexibleAlias = _FlexibleAliasCls() + + +class _Expand: + def __getitem__(self, args): + pass + + +Expand = _Expand()