After setting to_aiida_type as the default serializer in aiida-core 2.6, the common workflows would fail. The common inputs expect Pyhton data types instead of their corresponding AiiDA data types. Instead of adding the corresponding AiiDA data types as valid types, I set non_db = True for the common inputs, since the inputs were not stored in the database before, anyway.
After setting
to_aiida_type
as the default serializer inaiida-core 2.6
, the common workflows would fail. The common inputs expect Pyhton data types instead of their corresponding AiiDA data types. Instead of adding the corresponding AiiDA data types as valid types, I setnon_db = True
for the common inputs, since the inputs were not stored in the database before, anyway.