From a2f359d87af702db21f33c239584f3e59b1d54e6 Mon Sep 17 00:00:00 2001 From: morrisnein Date: Mon, 2 Oct 2023 12:18:46 +0300 Subject: [PATCH] pep8 --- test/unit/preprocessing/test_preprocessing_through_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/preprocessing/test_preprocessing_through_api.py b/test/unit/preprocessing/test_preprocessing_through_api.py index 536f003973..c1bbed9592 100644 --- a/test/unit/preprocessing/test_preprocessing_through_api.py +++ b/test/unit/preprocessing/test_preprocessing_through_api.py @@ -244,7 +244,7 @@ def test_correct_api_dataset_with_pseudo_text_preprocessing(): input_data = data_with_pseudo_text_features() fedot_model = Fedot(problem='classification') fedot_model.fit(input_data, predefined_model='auto') - predicted = fedot_model.predict(input_data) + fedot_model.predict(input_data) # Check there are no text nodes in the pipeline node_tags = [node.tags for node in fedot_model.current_pipeline.nodes]