convert back a string to an ua.Variant
(string, vtype)
| 132 | |
| 133 | |
| 134 | def string_to_variant(string, vtype): |
| 135 | """ |
| 136 | convert back a string to an ua.Variant |
| 137 | """ |
| 138 | return ua.Variant(string_to_val(string, vtype), vtype) |
| 139 | |
| 140 | |
| 141 | def get_node_children(node, nodes=None): |
nothing calls this directly
no test coverage detected