diff options
author | 2018-02-14 23:18:30 +0000 | |
---|---|---|
committer | 2018-02-14 23:18:30 +0000 | |
commit | bd7473954efc895037a37b94afe3c324045f8370 (patch) | |
tree | cf08e40d39a87de7654bc2e8cf0c8d12ba1a5c85 /pysite | |
parent | Database API Improvements #1qcra (#13) (diff) |
Fix odd typing error
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pysite/database.py b/pysite/database.py index 1c9cb838..45b13ad6 100644 --- a/pysite/database.py +++ b/pysite/database.py @@ -341,7 +341,7 @@ class RethinkDB: new_connection=True ) - def pluck(self, table_name: str, *selectors: Union[str, Dict[str, Union[List[...], Dict[str, ...]]]]): + def pluck(self, table_name: str, *selectors: Union[str, Dict[str, Union[List, Dict]]]): """ Get a list of values for a specific set of keys for every document in the table; this can include nested values |