﻿fc = "C:\\Jeff\\Gallatin_QC_troubleshooting\\Gallatin\\DEQ_Gallatin_2022_for_NWI_Troubleshoot.gdb\\CONUS_wetlands\\CONUS_wet_poly"
type(fc)
arcpy.management.MakeFeatureLayer(fc)
a = arcpy.management.MakeFeatureLayer(fc)
a
type(a)
a[0]
type(a[0])
a[0]
a
fc
mpl = []
fields2 = ["OBJECTID",'SHAPE@']
with arcpy.da.SearchCursor(fc,fields2) as cursor:     for row in cursor:         if row[1].partCount > 1:             print(row[0])             mpl.append(row[0])
a
a[0]
mpSel = a[0]
mpSel.setSelectionSet(mpl, 'NEW')
