Skip to content

Commit

Permalink
Remove unused parameters from class.
Browse files Browse the repository at this point in the history
  • Loading branch information
hreikin committed Mar 11, 2023
1 parent ac6212d commit bc3253a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/streamlit_uploads_library/gallery.py
Expand Up @@ -2,8 +2,8 @@
from src.streamlit_uploads_library.library import Library

class Gallery(Library):
def __init__(self, directory, expanded=False, file_extensions=(".png", ".jpg", ".jpeg"), number_of_columns=5, show_details=False):
super(Gallery, self).__init__(directory, expanded, file_extensions, number_of_columns, show_details)
def __init__(self, directory, file_extensions=(".png", ".jpg", ".jpeg"), number_of_columns=5):
super(Gallery, self).__init__(directory, file_extensions, number_of_columns)

def fetch_files(self):
return super().fetch_files()
Expand Down

0 comments on commit bc3253a

Please sign in to comment.