Skip to content

Commit

Permalink
added string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlov721 committed Jan 15, 2025
1 parent cff18dc commit 176859e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_data/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@ def generator1():


def test_merge_datasets(
bucket_storage: BucketStorage,
dataset_name: str,
bucket_storage: BucketStorage,
tempdir: Path,
subtests: SubTests,
):
Expand Down Expand Up @@ -581,7 +581,7 @@ def generator2():
dataset1_merged_with_dataset2 = dataset1.merge_with(
dataset2,
inplace=False,
new_dataset_name=dataset1_name + "_" + dataset2_name + "_merged",
new_dataset_name=f"{dataset1_name}_{dataset2_name}_merged",
)

classes = dataset1_merged_with_dataset2.get_classes()
Expand Down

0 comments on commit 176859e

Please sign in to comment.