Skip to content

Custom playdata exporters cause widget engine installation to fail #1707

@clpetersonucf

Description

@clpetersonucf

This appears to be because the widget installer is attempting to serialize a dict_keys object, which is not possible:

manifest_data["meta_data"]["playdata_exporters"] = exporter_mappings.keys()

The correction appears to be to simply convert the dict_keys to a list:

manifest_data["meta_data"]["playdata_exporters"] = list(
    exporter_mappings.keys()
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions