First, figure out your sas dataset encoding.
In SAS, run proc contents on the dataset. Check the "Encoding". In my case, my encoding was "latin1 Western (ISO)". Then enter your encoding as such:
df = pd.read_sas('filename', format = 'sas7bdat', encoding = 'latin-1')