Skip to content

Commit

Permalink
fix typing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Feb 14, 2024
1 parent 5406f5f commit 398147e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/python-fastui/fastui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from .components import AnyComponent

__version__ = '0.5.1'
__version__ = '0.5.2'
__all__ = 'AnyComponent', 'FastUI', 'prebuilt_html'


Expand Down
2 changes: 1 addition & 1 deletion src/python-fastui/fastui/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class ServerLoad(_p.BaseModel, extra='forbid'):
load_trigger: _t.Union[events.PageEvent, None] = _p.Field(default=None, serialization_alias='loadTrigger')
components: '_t.Union[_t.List[AnyComponent], None]' = None
sse: _t.Union[bool, None] = None
sse_retry: _t.Union[int, None] = _p.Field(None, serialization_alias='sseRetry')
sse_retry: _t.Union[int, None] = _p.Field(default=None, serialization_alias='sseRetry')
method: _t.Union[_t.Literal['GET', 'POST', 'PATCH', 'PUT', 'DELETE'], None] = None
type: _t.Literal['ServerLoad'] = 'ServerLoad'

Expand Down

0 comments on commit 398147e

Please sign in to comment.