aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-14 23:21:11 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-14 23:21:11 +0000
commit2770f167b14612710ea19d04e3b9c6d24db670dd (patch)
tree85dca8459e8b0c2806f2aedbbe643257c51c3ea5
parentFix odd typing error (diff)
Fix odd typing error
-rw-r--r--pysite/database.py2
1 files changed, 1 insertions, 1 deletions
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