kittenswolf

Results 12 issues of kittenswolf

In the "simple example", the following code is shown: from flask_breadcrumbs import Breadcrumbs, register_breadcrumbs however, there is no `register_breadcrumbs` function. Instead, it should be from flask_breadcrumbs import Breadcrumbs, register_breadcrumb

The string `[/` is escaped using `textual.markup.escape`, but the app still crashes: ```py from textual.app import App, ComposeResult from textual.widgets import Header, Static from textual.markup import escape class BugSample(App): BINDINGS...