In a python caller:
wkt = feature.getAttribute('_geometry')
print type(wkt)
>>> <type 'bytearray'>
I think that's weird because WKT stands for Well Known Text and should be just string object. In my experience FME is the only tool where WKT geometry is not a string. Why FME store WKT in a bytearray object?