Skip to content

Commit

Permalink
ci: remove future import that breaks ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
sujuka99 committed Oct 6, 2023
1 parent 1d7a04b commit 5aa5936
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations
# from __future__ import annotations

from pydantic import Field
from typing_extensions import override
Expand Down
2 changes: 0 additions & 2 deletions kpops/components/streams_bootstrap/streams/streams_app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import annotations

from pydantic import Field
from typing_extensions import override

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ split-on-trailing-comma = false
extend-immutable-calls = ["typer.Argument"]

[tool.ruff.flake8-type-checking]
runtime-evaluated-base-classes = ["pydantic.BaseModel", "kpops.components.base_components.kafka_app.KafkaApp"]
runtime-evaluated-base-classes = ["pydantic.BaseModel"]

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 5aa5936

Please sign in to comment.