Skip to content

Commit

Permalink
Fix bug in Breadcrumb class
Browse files Browse the repository at this point in the history
This class has never been used, the `super().__init__(...)` had a typo.
  • Loading branch information
mkhorton authored Dec 8, 2024
1 parent aab16c1 commit e0e7684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crystal_toolkit/helpers/layouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ def __init__(
]

kwargs["aria-label"] = "breadcrumbs"
super(links).__init__(**kwargs)
super().__init__(links, **kwargs)


class Card(html.Div):
Expand Down

0 comments on commit e0e7684

Please sign in to comment.