diff options
Diffstat (limited to 'regenTheExpertTA.py')
-rwxr-xr-x | regenTheExpertTA.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/regenTheExpertTA.py b/regenTheExpertTA.py index 619bf34..47aac9e 100755 --- a/regenTheExpertTA.py +++ b/regenTheExpertTA.py @@ -72,7 +72,6 @@ for c in d.columns: if c in ['LastName', 'FirstName', 'UserName', 'SID']: continue maxP = d.loc[(d['UserName'] == '_Max_Points_')][c].values[0] - d.loc[(d['UserName'] == '_Max_Points_')][c] index = ~d['UserName'].isin( specialUsers ) d.loc[index,c] *= maxP/100 # convert percentage to points |