This commit is contained in:
Emily Soth 2025-05-05 09:23:41 -07:00
parent 83fde92c9a
commit 830c1fbf42
2 changed files with 1 additions and 3 deletions

View File

@ -148,7 +148,7 @@ def export_to_python(target_filepath, model_id, args_dict=None):
if args_dict is None:
cast_args = {
key: '' for key in models.model_id_to_spec[model_id].inputs_dict.keys()}
spec.id: '' for spec in models.model_id_to_spec[model_id].inputs}
else:
cast_args = dict((str(key), value) for (key, value)
in args_dict.items())

View File

@ -28,8 +28,6 @@ from .unit_registry import u
LOGGER = logging.getLogger(__name__)
speedups.enable()
INPUT_WIND_DATA_FIELDS = {
"long": {
"type": "number",