While trying to create a style for patternfly6 which uses class names like pf-v6-c-table__sort I ran into the issue that I cannot set this to a callable:
Attaching that style to a table yields: class="bogo__sort first_column iommi_sort_header subheader". The problem seems to be that iommi.attrs.render_class doesn't evaluate the callable. Inserting
While trying to create a style for patternfly6 which uses class names like
pf-v6-c-table__sort
I ran into the issue that I cannot set this to a callable:Attaching that style to a table yields:
class="bogo__sort first_column iommi_sort_header subheader"
. The problem seems to be thatiommi.attrs.render_class
doesn't evaluate the callable. Insertinginto that function yields:
yolo
apparently got evaluated higher up the chain already.