From aae8a034157411c0c8f18e0753385db723f50ce6 Mon Sep 17 00:00:00 2001 From: "neiljp (Neil Pilgrim)" Date: Thu, 2 Nov 2017 10:36:25 -0700 Subject: [PATCH] mypy: Explicitly specify Dict[str, Any] as DummyForm base type. --- zerver/tests/test_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/tests/test_templates.py b/zerver/tests/test_templates.py index a6287369c4..d5d69f5a55 100644 --- a/zerver/tests/test_templates.py +++ b/zerver/tests/test_templates.py @@ -27,7 +27,7 @@ class get_form_value(object): return self._value -class DummyForm(dict): +class DummyForm(Dict[str, Any]): pass