aboutsummaryrefslogtreecommitdiff
path: root/trygvis/eda/cli/eda_rdf.py
diff options
context:
space:
mode:
Diffstat (limited to 'trygvis/eda/cli/eda_rdf.py')
-rw-r--r--trygvis/eda/cli/eda_rdf.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/trygvis/eda/cli/eda_rdf.py b/trygvis/eda/cli/eda_rdf.py
index 7b4ed2c..ee4b0dd 100644
--- a/trygvis/eda/cli/eda_rdf.py
+++ b/trygvis/eda/cli/eda_rdf.py
@@ -9,6 +9,8 @@ class CliCommand(object):
self.description = description
+# TODO: move all of the command classes to the file they delegate to.
+
class AddToDb(CliCommand):
def __init__(self):
super().__init__("add-to-db", "Import RDF triplet file to the database")
@@ -55,6 +57,7 @@ class DigikeyDownloadForSchematic(CliCommand):
def run(self, argv):
p = argparse.ArgumentParser(prog=self.key, description=self.description)
p.add_argument("--schematic", required=True)
+ p.add_argument("-f", "--force", default=False, action='store_true')
args = p.parse_args(argv)
from trygvis.eda.cli import digikey_download_for_schematic