Skip to content

Commit

Permalink
fix: image path
Browse files Browse the repository at this point in the history
  • Loading branch information
vancauwe committed Dec 19, 2024
1 parent ba44854 commit a62a456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/whale_gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def _format_whale_name(name:str) -> str:
url = sw_wv.df_whale_img_ref.iloc[ix].loc['WHALE_REFERENCES']
# Define image paths
current_dir = os.getcwd()
image_path = os.path.join(current_dir, "images/references/", img_name)
image_path = os.path.join(current_dir, "src/images/references/", img_name)
#image_path = f"images/references/{img_name}"
#next(cols).image(image_path, width=150, caption=f"{whale_name}")
thing = next(cols)
Expand Down

0 comments on commit a62a456

Please sign in to comment.