Skip to content

Commit

Permalink
chore: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Sep 26, 2023
1 parent cf2b6a3 commit cb39e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mknodes/basenodes/mkimageslideshow.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_element(self) -> xml.Div:
attrs = {"data-simple-slider": ""}
root = xml.Div(style="width: 100%; padding-bottom: 25%", parent=None, **attrs)
for img in self.images:
xml.Img(src={img}, parent=root)
xml.Img(src=img, parent=root)
return root

def _to_markdown(self) -> str:
Expand Down

0 comments on commit cb39e96

Please sign in to comment.