We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900a3b0 commit d5c16d6Copy full SHA for d5c16d6
misc/scripts/models-as-data/bulk_generate_mad.py
@@ -19,7 +19,9 @@
19
try:
20
import yaml
21
except ImportError:
22
- print("ERROR: PyYAML is not installed. Please install it with 'pip install pyyaml'.")
+ print(
23
+ "ERROR: PyYAML is not installed. Please install it with 'pip install pyyaml'."
24
+ )
25
sys.exit(1)
26
27
import generate_mad as mad
@@ -343,7 +345,9 @@ def download_dca_databases(
343
345
continue
344
346
347
if pretty_name in artifact_map:
- print(f"Skipping previous database {artifact_map[pretty_name]['artifact_name']} for {pretty_name}")
348
349
+ f"Skipping previous database {artifact_map[pretty_name]['artifact_name']} for {pretty_name}"
350
351
352
artifact_map[pretty_name] = analyzed_database
353
0 commit comments