Fix typos with codespell (#305)

This commit is contained in:
Christian Clauss 2023-01-22 18:45:11 +01:00 committed by GitHub
parent 58a0d8c805
commit eca91beab2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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.

View File

@ -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
}

View File

@ -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.