Skip to content

Commit

Permalink
simplify logic
Browse files Browse the repository at this point in the history
  • Loading branch information
KryptK420 authored and the-crypt-keeper committed Nov 21, 2024
1 parent f7337f6 commit fa9758c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def main():
format_func=lambda x: 'All' if x == 'all' else ('%dM'%(float(x)*1000) if float(x)<1 else x+'B')
)
if selected_sizes != ['all']:
filtered = filtered[filtered['size'].isin([s for s in selected_sizes if s != 'all'])]
filtered = filtered[filtered['size'].isin(selected_sizes)]

if best_of:
if not show_quants:
Expand Down

0 comments on commit fa9758c

Please sign in to comment.