Skip to content

Commit

Permalink
Fix lint error (unused-variabled)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhairs committed Sep 7, 2024
1 parent 5a68ebb commit bd80448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_source_sink_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
],
)
def test_source_init(class_: Type[Source], config: Dict[str, Any]):
source = class_("test", PARSER, config)
class_("test", PARSER, config)
return


Expand All @@ -103,5 +103,5 @@ def test_source_init(class_: Type[Source], config: Dict[str, Any]):
],
)
def test_sink_init(class_: Type[Sink], config: Dict[str, Any]):
sink = class_("test", config)
class_("test", config)
return

0 comments on commit bd80448

Please sign in to comment.