Skip to content

Commit

Permalink
black format
Browse files Browse the repository at this point in the history
  • Loading branch information
mzouink committed Mar 21, 2024
1 parent 06127ee commit e223a28
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dacapo/experiments/datasplits/datasplit_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def __init__(
min_training_volume_size=8_000, # 20**3
raw_min=0,
raw_max=255,
classes_separator_caracter = "&",
classes_separator_caracter="&",
):
self.name = name
self.datasets = datasets
Expand Down Expand Up @@ -226,7 +226,9 @@ def class_name(self, class_name):
self._class_name = class_name

def check_class_name(self, class_name):
datasets, classes = format_class_name(class_name,self.classes_separator_caracter)
datasets, classes = format_class_name(
class_name, self.classes_separator_caracter
)
if self.class_name is None:
self.class_name = classes
if self.targets is None:
Expand Down

0 comments on commit e223a28

Please sign in to comment.