Using Table to Table to export to a csv file adds the OID field even though it is not included in the model. It does the same thing when running it as a python script as well.
Model popup: (no OID field listed)

Python snippet: (no OID field listed before the first field)
Spoiler# Process: Table To Table (Table To Table) (conversion)
with arcpy.EnvManager(qualifiedFieldNames=False):
GIS_Export_csv = arcpy.conversion.TableToTable(in_rows=GISVotersJune2021_2_, out_path=Redistricting2021, out_name="GIS_Export.csv", where_clause="", field_mapping="RESADR_ID \"RESADR_ID\" true true false 255 Text 0 0,First,#,GISVotersJune2021,Text$.RESADR_ID,0,255;IS_STANDARD....<snip>
Output csv with extra field:
SpoilerOID_,RESADR_ID,IS_STANDARD,ADDR_NON_STD,HOUSE_NUM,HOUSE_SUFFIX,PRE_DIRECTION,STREET_NAME,STREET_TYPE,POST_DIRECTION,UNIT_TYPE,UNIT_NUM,CITY,STATE,ZIP_CODE,ZIP_PLUS,SPL_ID,PRECINCT,
How do I get rid of it? Right now I'm dumping the table into Excel (and not importing that field) which is a pain.
Thanks,
Tycho