Skip to content

Commit e0e7684

Browse files
authored
Fix bug in Breadcrumb class
This class has never been used, the `super().__init__(...)` had a typo.
1 parent aab16c1 commit e0e7684

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crystal_toolkit/helpers/layouts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ def __init__(
687687
]
688688

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

692692

693693
class Card(html.Div):

0 commit comments

Comments
 (0)