diff --git a/README.md b/README.md index d50f8ed..357e81a 100755 --- a/README.md +++ b/README.md @@ -93,7 +93,6 @@ app = AlfortDom[dict[str, int], Msg]( update=update, ) app.main(root="root") - ``` ![simple counter](https://raw.githubusercontent.com/ar90n/alfort-dom/assets/images/example.gif) @@ -133,7 +132,7 @@ $ poetry poe run-example [download-url]: https://pypi.org/project/alfort-dom/ [version-shield]: https://img.shields.io/pypi/v/alfort-dom?style=flat [version-url]: https://pypi.org/project/alfort-dom/ -[build-shiled]: https://img.shields.io/github/actions/workflow/status/ar90n/alfort-dom/ci-testing.yml +[build-shiled]: https://img.shields.io/github/actions/workflow/status/ar90n/alfort-dom/ci-testing.yml [build-url]: https://github.com/ar90n/alfort-dom/actions/workflows/ci-testing.yml [contributors-shield]: https://img.shields.io/github/contributors/ar90n/alfort-dom.svg?style=flat [contributors-url]: https://github.com/ar90n/alfort-dom/graphs/contributors diff --git a/docs/examples/key_and_mouse_events/main.py b/docs/examples/key_and_mouse_events/main.py index e75743b..e8773c4 100755 --- a/docs/examples/key_and_mouse_events/main.py +++ b/docs/examples/key_and_mouse_events/main.py @@ -82,7 +82,6 @@ def update(msg: Msg, state: State) -> tuple[State, list[Effect[Msg]]]: def subscriptions(state: State) -> list[Subscription[Msg]]: - return [ on_mousemove(lambda e: MouseMoved(e.pageX, e.pageY)), on_keypress(lambda e: KeyPressed(e.code)),