Skip to content

Commit

Permalink
Fix optional type
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Jul 9, 2024
1 parent 0a5ce92 commit 4ee539f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kpops/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class KafkaConnectConfig(BaseSettings):
class KpopsConfig(BaseSettings):
"""Global configuration for KPOps project."""

_config: ClassVar[KpopsConfig] = PrivateAttr()
_config: ClassVar[KpopsConfig | None] = PrivateAttr()

pipeline_base_dir: Path = Field(
default=Path(),
Expand Down

0 comments on commit 4ee539f

Please sign in to comment.