I am trying to create a feature layer from the current selection. The selection can be one feature or multiple features. I have an ERROR 000358: Invalid expression on line 9. I am assuming my where clause is wrong?
ptSelection = "points"
parcel = 'TaxParcels'
PF = "memory\PointFeat"
selected_features = arcpy.Describe(ptSelection).FIDSet
where_clause="OBJECTID = {}".format(selected_features)
arcpy.MakeFeatureLayer_management(ptSelection, PF, where_claus