aboutsummaryrefslogtreecommitdiff
path: root/src/ee/tools/part_find_requirements.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ee/tools/part_find_requirements.py')
-rw-r--r--src/ee/tools/part_find_requirements.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ee/tools/part_find_requirements.py b/src/ee/tools/part_find_requirements.py
index a13c3f2..bc0a48d 100644
--- a/src/ee/tools/part_find_requirements.py
+++ b/src/ee/tools/part_find_requirements.py
@@ -1,6 +1,7 @@
import argparse
from pathlib import Path
+import ee.tools
from ee.part import requirement, Part, load_db
@@ -25,6 +26,7 @@ def work(in_path: Path, out_path: Path, report_path: Path):
parser = argparse.ArgumentParser()
+ee.tools.add_default_argparse_group(parser)
parser.add_argument("--in",
dest="in_path",
@@ -38,5 +40,6 @@ parser.add_argument("--out",
parser.add_argument("--report")
args = parser.parse_args()
+ee.tools.process_default_argparse_group(args)
work(Path(args.in_path), Path(args.out), Path(args.report))