Skip to content

Commit

Permalink
Merge pull request #8 from miragecoa/main
Browse files Browse the repository at this point in the history
Reorder Logos
  • Loading branch information
miragecoa authored Sep 26, 2024
2 parents abb4c5a + aee4b12 commit 80e009f
Show file tree
Hide file tree
Showing 6 changed files 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 @@ -175,7 +175,7 @@ def uncheck_all():

# Get a list of all logo files in the directory
logos_dir = "logos"
logo_files = [f for f in os.listdir(logos_dir) if f.endswith(('.png', '.jpg', '.jpeg'))]
logo_files = sorted([f for f in os.listdir(logos_dir) if f.endswith(('.png', '.jpg', '.jpeg'))])

demo = gr.Blocks(css=custom_css)
with demo:
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 80e009f

Please sign in to comment.