Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
sujuka99 committed Apr 3, 2024
1 parent aa75eb6 commit 1ee093c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kpops/components/base_components/kafka_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,10 @@ def _resetter(self) -> KafkaConnectorResetter:
connector=self.full_name,
brokers=self.config.kafka_brokers,
),
**self.resetter_values.model_dump(), # We should 2 problem matches here
**self.resetter_values.model_dump(), # Pyright error
),
)
a = 0 # Ruff errors here

Check failure on line 163 in kpops/components/base_components/kafka_connector.py

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 3.10)

Missing explicit `return` at the end of function able to return non-`None` value

Check failure on line 163 in kpops/components/base_components/kafka_connector.py

View workflow job for this annotation

GitHub Actions / Test (ubuntu-22.04, 3.10)

Local variable `a` is assigned to but never used

@override
async def deploy(self, dry_run: bool) -> None:
Expand Down

0 comments on commit 1ee093c

Please sign in to comment.