From 3adf6cfd586355c8b8ce7fdc9722f868e22287c5 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Sat, 8 Jun 2024 16:40:16 +0200 Subject: [PATCH] refactor: minor cleanup --- tests/unit_tests/test_generate_cli_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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():