Skip to content

Commit 22e1ca7

Browse files
committed
Routine chores
- Change labels type to 'Any'. - Bump version: 0.4.16 -> 0.4.17.
1 parent f39b532 commit 22e1ca7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyaether"
3-
version = "0.4.16"
3+
version = "0.4.17"
44
description = "DSL for writing HTML user interfaces in Python."
55
authors = [{ name = "Saurabh Ghanekar", email = "ghanekarsaurabh8@gmail.com" }]
66
license = "BSD-2-Clause"

src/aether/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def render(*elements: BaseWebElement, stringify: bool = True) -> str:
99
return mark_safe("").join(rendered_elements)
1010

1111

12-
__version__ = "0.4.16"
12+
__version__ = "0.4.17"
1313
__all__ = [
1414
"render",
1515
"BaseAttribute",

src/aether/plugins/chartjs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class ChartJSDataset(BaseModel):
3030
class ChartJSData(BaseModel):
3131
model_config = ConfigDict(extra="allow")
3232

33-
labels: Annotated[list[str | int | float], Field(default_factory=list)]
33+
labels: Annotated[list[Any], Field(default_factory=list)]
3434
datasets: Annotated[list[ChartJSDataset], Field(default_factory=list)]
3535

3636

0 commit comments

Comments
 (0)