I am trying to copy features from one feature class to another and for some reason I keep getting the error:
TypeError: 'tuple' object is not callable
import arcpy
from arcpy import env
Ceramic='E:\\GIS Data Generic\\Associated Artifacts\\Associated Artifacts.gdb\\Ceramic'
selCeramic='E:\\GIS Data Generic\\Associated Artifacts\\Associated Artifacts.gdb\\Ceramic_Selected'
arcpy.management.CopyFeatures(Ceramic, selCeramic)
I've tried putting the file path directly into the function as well and am receiving the same error.
Other functions such as ExportTable and DeleteFeatures are working fine so I'm not sure why it is reading anything as a tuple.