Skip to content

Commit

Permalink
Format Python code with psf/black push (#80)
Browse files Browse the repository at this point in the history
There appear to be some python formatting errors in
bbec33d. This pull request
uses the [psf/black](https://github.com/psf/black) formatter to fix
these issues.
  • Loading branch information
rhoadesScholar authored Feb 14, 2024
2 parents bbec33d + 9eb2e71 commit 8505b16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dacapo/experiments/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@
from .one_hot_task_config import OneHotTaskConfig, OneHotTask # noqa
from .pretrained_task_config import PretrainedTaskConfig, PretrainedTask # noqa
from .affinities_task_config import AffinitiesTaskConfig, AffinitiesTask # noqa
from .inner_distance_task_config import InnerDistanceTaskConfig, InnerDistanceTask # noqa
from .inner_distance_task_config import (
InnerDistanceTaskConfig,
InnerDistanceTask,
) # noqa
1 change: 1 addition & 0 deletions dacapo/experiments/tasks/inner_distance_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from .predictors import InnerDistancePredictor
from .task import Task


# Goal is have a distance task but with distance inside the forground only
class InnerDistanceTask(Task):
"""This is just a dummy task for testing."""
Expand Down

0 comments on commit 8505b16

Please sign in to comment.