How to check if two Creative Props are the same?

I wanted to check in an if statment if two creative_prop_asset are the same this is my current code:

if(Prop1 = Prop2):
   Print("Is the Same")

The Current Error Says this This function parameter expects a value of type tuple(comparable,comparable), but this argument is an incompatible value of type tuple(creative_prop_asset,creative_prop_asset).(3509)

Unfortunately the creative_prop_asset type is not directly comparable at the moment so you won’t be able to check if two assets are the same through code. This is something we’ll be working to improve in the future.