From 2770f167b14612710ea19d04e3b9c6d24db670dd Mon Sep 17 00:00:00 2001 From: Gareth Coles Date: Wed, 14 Feb 2018 23:21:11 +0000 Subject: Fix odd typing error --- pysite/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pysite') diff --git a/pysite/database.py b/pysite/database.py index 45b13ad6..5a319ebc 100644 --- a/pysite/database.py +++ b/pysite/database.py @@ -369,7 +369,7 @@ class RethinkDB: self.query(table_name).pluck(*selectors) ) - def without(self, table_name: str, *selectors: Union[str, Dict[str, Union[List[...], Dict[str, ...]]]]): + def without(self, table_name: str, *selectors: Union[str, Dict[str, Union[List, Dict]]]): """ The functional opposite of `pluck()`, returning full documents without the specified selectors -- cgit v1.2.3