Am I missing something here?

Trying to use a fine universe filter to sort by marketcap but GOOG and GOOGL show up twice. How can I get just one to exist in the list sorted by marketcap?

I tried the below and no luck. Also tried .remove("GOOG") but looks like these are objects so that won't work. Any ideas?

filtered_fine = [x.Symbol for x in sortedByMarketCap if x.MarketCap > 1e10 and x.Symbol is not "GOOG"]

Author