Skip to content

Commit

Permalink
Fix retirements summary sorting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
biwano committed Sep 11, 2023
1 parent f503edb commit e51ef53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/services/retirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def filter_tokens(self, df, tokens):

@chained_cached_command()
def summary(self, df):
df = df.apply(summary)
df = df.apply(summary).reset_index(drop=True)
return df

@chained_cached_command()
Expand Down

0 comments on commit e51ef53

Please sign in to comment.