From eca91beab281f0531a2492cbeaef5e2dcfebc19f Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 22 Jan 2023 18:45:11 +0100 Subject: [PATCH] Fix typos with codespell (#305) --- README.md | 2 +- pynecone/components/component.py | 2 +- pynecone/event.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5304358c7..935185667 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ You can create a multi-page app by adding more routes. As of December 2022, Pynecone has just been released publicly and is in the **Alpha Stage**. - - :large_orange_diamond: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them activly. + - :large_orange_diamond: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them actively. - **Public Beta**: Stable enough for non-enterprise use-cases. - **Public Hosting Beta**: **Optionally** Deploy and Host your own apps on Pynecone! - **Public**: Pynecone is production ready. diff --git a/pynecone/components/component.py b/pynecone/components/component.py index fe5bafd18..c0d3f97cc 100644 --- a/pynecone/components/component.py +++ b/pynecone/components/component.py @@ -315,7 +315,7 @@ class Component(Base, ABC): # Extract the style for this component. component_style = Style(style[type(self)]) - # Only add stylee props that are not overriden. + # Only add stylee props that are not overridden. component_style = { k: v for k, v in component_style.items() if k not in self.style } diff --git a/pynecone/event.py b/pynecone/event.py index 986081528..73fa08562 100644 --- a/pynecone/event.py +++ b/pynecone/event.py @@ -18,7 +18,7 @@ class Event(Base): # The event name. name: str - # The routing data where event occured + # The routing data where event occurred router_data: Dict[str, Any] = {} # The event payload.