Skip to content

Commit

Permalink
Remove print statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
hreikin committed Mar 7, 2023
1 parent 7845ac8 commit 9820068
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/streamlit_simple_gallery/__init__.py
Expand Up @@ -34,8 +34,6 @@ def create_gallery(self):
self.max_idx = self.number_of_columns-1
self.gallery_files, self.gallery_filenames = self.fetch_files()
self.all_columns = list(st.columns(self.number_of_columns))
for item in self.all_columns:
print(item)
for img in self.gallery_files:
with self.all_columns[self.col_idx]:
st.image(img, caption=self.gallery_filenames[self.filename_idx], use_column_width=True)
Expand Down

0 comments on commit 9820068

Please sign in to comment.