diff --git a/tests/unit_tests/test_generate_cli_client.py b/tests/unit_tests/test_generate_cli_client.py index 6e11857c..6a60ed77 100644 --- a/tests/unit_tests/test_generate_cli_client.py +++ b/tests/unit_tests/test_generate_cli_client.py @@ -5,6 +5,8 @@ import isort from bec_widgets.cli.generate_cli import ClientGenerator +# pylint: disable=missing-function-docstring + # Mock classes to test the generator class MockBECWaveform1D: @@ -24,11 +26,9 @@ class MockBECFigure: def add_plot(self, plot_id: str): """Add a plot to the figure.""" - pass def remove_plot(self, plot_id: str): """Remove a plot from the figure.""" - pass def test_client_generator_with_black_formatting():