aboutsummaryrefslogtreecommitdiff
path: root/src/ee/tools/digikey_refresh_parts.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ee/tools/digikey_refresh_parts.py')
-rw-r--r--src/ee/tools/digikey_refresh_parts.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/ee/tools/digikey_refresh_parts.py b/src/ee/tools/digikey_refresh_parts.py
deleted file mode 100644
index e3e3b35..0000000
--- a/src/ee/tools/digikey_refresh_parts.py
+++ /dev/null
@@ -1,22 +0,0 @@
-import argparse
-from pathlib import Path
-
-from ee.digikey.refresh_parts import refresh_parts
-
-parser = argparse.ArgumentParser()
-
-parser.add_argument("--in",
- dest="in_",
- required=True,
- metavar="FILE")
-
-parser.add_argument("--out",
- required=True,
- metavar="FILE")
-
-args = parser.parse_args()
-
-cache_dir = ".ee/cache"
-force = True
-
-refresh_parts(Path(args.in_), Path(args.out), Path(cache_dir), force)