Skip to content

Commit

Permalink
Fix fields type in app config model
Browse files Browse the repository at this point in the history
  • Loading branch information
rnv812 committed Jun 4, 2024
1 parent f4d06bc commit a40e1db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions eventum_core/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@


class ApplicationConfig(BaseModel, extra='forbid', frozen=True):
input: tuple[InputConfigMapping] # type: ignore[valid-type]
input: tuple[InputConfigMapping, ...] # type: ignore[valid-type]
event: JinjaEventConfig
output: tuple[OutputConfigMapping] # type: ignore[valid-type]
output: tuple[OutputConfigMapping, ...] # type: ignore[valid-type]


class Application:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "eventum-core"
version = "1.0.6"
version = "1.0.7"
description = "Flexible event generator"
license = "Apache-2.0"
authors = ["Nikita Reznikov <nikita.reznikov.public@mail.ru>"]
Expand Down

0 comments on commit a40e1db

Please sign in to comment.