convert attributes, dropping None and empty values
(**attribs: t.Any)
| 75 | |
| 76 | |
| 77 | def mk_attribs(**attribs: t.Any) -> SSDict: |
| 78 | """convert attributes, dropping None and empty values""" |
| 79 | return {str(k): v1 for (k, v) in attribs.items() if (v1 := conv_attrib(v)) is not None} |
| 80 | |
| 81 | |
| 82 | ##################################################################### |
no test coverage detected