Skip to content

Commit f479ace

Browse files
committed
[fix] Fix a mypy issue
1 parent 1ee9d93 commit f479ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoPyTorch/datasets/base_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def __init__(
108108
val_transforms (Optional[torchvision.transforms.Compose]):
109109
Additional Transforms to be applied to the validation/test data
110110
"""
111-
self.dataset_name: str = dataset_name
111+
self.dataset_name = ""
112112

113113
if self.dataset_name is not None:
114114
self.dataset_name = str(uuid.uuid1(clock_seq=os.getpid()))

0 commit comments

Comments
 (0)