I am running the arcgis pro utility network Trace tool in pycharm and storing the results in a variable but from that variable i am not getting the traced features, any suggestions how will i get the traced features.
import arcpy
gdb = "some_gdb"
arcpy.env.workspace = gdb
fds = arcpy.ListDatasets("*", "Feature")
results = arcpy.un.Trace()
for i in results:
print(i)

I am getting results like this any suggestions how will i get the traced features.