Skip to content

Commit

Permalink
remove unused f-string signs
Browse files Browse the repository at this point in the history
  • Loading branch information
IIaKyJIuH committed Jun 9, 2023
1 parent 8e87450 commit 8e86b98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fedot/core/data/merge/supplementary_data_merger.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def merge_column_types(self) -> Dict[str, np.ndarray]:
new_target_types = None
for output in self.outputs:
if output.supplementary_data.column_types is None:
self.log.debug(f'Perform determination of column types in DataMerger')
self.log.debug('Perform determination of column types in DataMerger')
table_corr = TableTypesCorrector()
output.supplementary_data.column_types = table_corr.prepare_column_types_info(output.predict,
output.target,
Expand Down
2 changes: 1 addition & 1 deletion fedot/core/data/supplementary_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def define_parents(self, unique_features_masks: np.array, task: TaskTypesEnum):
:param task: task to solve
"""
if not isinstance(self.previous_operations, list) or len(self.previous_operations) == 1:
raise ValueError(f'Data was received from one node but at least two nodes are required')
raise ValueError('Data was received from one node but at least two nodes are required')

data_operations = OperationTypesRepository('data_operation').suitable_operation(task_type=task)

Expand Down

0 comments on commit 8e86b98

Please sign in to comment.