From 61a0adcfe79043c17e905ae2e5d75b4ce8eaddd5 Mon Sep 17 00:00:00 2001 From: Ellen Marie Dash Date: Thu, 10 Oct 2019 05:51:06 -0400 Subject: [PATCH] [commands/cache] Add missing type annotation. --- src/pip/_internal/commands/cache.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pip/_internal/commands/cache.py b/src/pip/_internal/commands/cache.py index 09d7d455d..722732655 100644 --- a/src/pip/_internal/commands/cache.py +++ b/src/pip/_internal/commands/cache.py @@ -136,6 +136,7 @@ class CacheCommand(Command): return self.remove_cache_items(options, ['*']) def _wheels_cache_dir(self, options): + # type: (Values) -> str return os.path.join(options.cache_dir, 'wheels') def _find_wheels(self, options, pattern):