diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-03-08 22:30:36 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-03-08 22:30:36 +0100 |
commit | 3a90ab0dbf5826bc7476971cd163c9a080d2fb2f (patch) | |
tree | 6c42ad693ec8cfcec78483c45a7dce4bdc4e4724 /src/ee/tools | |
parent | 5a6ab34565fa3d783337a68e07e3500361c8fcf5 (diff) | |
download | ee-python-3a90ab0dbf5826bc7476971cd163c9a080d2fb2f.tar.gz ee-python-3a90ab0dbf5826bc7476971cd163c9a080d2fb2f.tar.bz2 ee-python-3a90ab0dbf5826bc7476971cd163c9a080d2fb2f.tar.xz ee-python-3a90ab0dbf5826bc7476971cd163c9a080d2fb2f.zip |
Digikey: extracting http caching into its own class.
Diffstat (limited to 'src/ee/tools')
-rw-r--r-- | src/ee/tools/digikey_search_parts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ee/tools/digikey_search_parts.py b/src/ee/tools/digikey_search_parts.py index 80393eb..07c3017 100644 --- a/src/ee/tools/digikey_search_parts.py +++ b/src/ee/tools/digikey_search_parts.py @@ -16,7 +16,7 @@ parser.add_argument("--out", args = parser.parse_args() -cache_dir = ".ee/cache" +cache_dir = ".ee/cache/digikey" force = True search_parts(Path(args.in_), Path(args.out), Path(cache_dir), force) |