designspace.ParamDiff#

class designspace.ParamDiff(param: str, old: Any | None, new: Any | None)#

Bases: object

One difference between two configurations, from ds.config_diff().

param#

The path that differs.

Type:

str

old#

Its value in the first configuration, or None if absent there.

Type:

Any | None

new#

Its value in the second, or None if absent there.

Type:

Any | None