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.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/trygvis/eda/cli/eda_rdf.py b/trygvis/eda/cli/eda_rdf.py
index ecd4ba6..7b4ed2c 100644
--- a/trygvis/eda/cli/eda_rdf.py
+++ b/trygvis/eda/cli/eda_rdf.py
@@ -63,7 +63,8 @@ class DigikeyDownloadForSchematic(CliCommand):
class DigikeyDownloadMetadata(CliCommand):
def __init__(self):
- super().__init__("digikey-download-metadata", "Download category tree and attribute types and values from digikey.com")
+ super().__init__("digikey-download-metadata",
+ "Download category tree and attribute types and values from digikey.com")
def run(self, argv):
p = argparse.ArgumentParser(prog=self.key, description=self.description)
@@ -76,7 +77,8 @@ class DigikeyDownloadMetadata(CliCommand):
class DigikeyDownloadAttributeTypesForCategory(CliCommand):
def __init__(self):
- super().__init__("digikey-download-attribute-types-for-category", "Download the attribute types for a category from digikey.com")
+ super().__init__("digikey-download-attribute-types-for-category",
+ "Download the attribute types for a category from digikey.com")
def run(self, argv):
p = argparse.ArgumentParser(prog=self.key, description=self.description)
@@ -88,6 +90,7 @@ class DigikeyDownloadAttributeTypesForCategory(CliCommand):
from trygvis.eda.cli import digikey_download_attribute_types_for_category
digikey_download_attribute_types_for_category.run(args.category, args.sub_category, args.output, args)
+
class MakeBom(CliCommand):
def __init__(self):
super().__init__("make-bom", "Create a BOM for a project with all info for each part.")