diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-09 18:08:29 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-09 18:08:29 -0800 |
commit | ebd467fba4773a6dd027ca118124e4c6f80a7e07 (patch) | |
tree | 71092029db6015243b4e38efe301104a7b6d65c4 /python | |
parent | ef7d24cd08b98d58779335acd1d655bd342cd9ec (diff) | |
download | fatcat-ebd467fba4773a6dd027ca118124e4c6f80a7e07.tar.gz fatcat-ebd467fba4773a6dd027ca118124e4c6f80a7e07.zip |
container browse: quick fix type annotation
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat_web/search.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/search.py b/python/fatcat_web/search.py index 99c8ee77..b19b57e6 100644 --- a/python/fatcat_web/search.py +++ b/python/fatcat_web/search.py @@ -242,7 +242,7 @@ def get_elastic_container_random_releases(ident: str, limit: int = 5) -> List[Di return results -def get_elastic_container_browse_year_volume(ident: str) -> List[Dict[int, Any]]: +def get_elastic_container_browse_year_volume(ident: str) -> Dict[int, Dict[str, Any]]: """ Returns a set of histogram buckets: |