Skip to content

Commit

Permalink
Add missing task creation imports to skeleton.py (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
j6k4m8 authored May 21, 2024
1 parent 7e047ed commit 4736d98
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion igneous/task_creation/skeleton.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from collections import defaultdict
import copy
import itertools
from functools import reduce, partial
import re
from typing import Any, Dict, Tuple, cast, Optional, List, Iterator, Sequence, Union
Expand All @@ -19,7 +20,8 @@
from igneous.tasks import (
SkeletonTask, UnshardedSkeletonMergeTask,
ShardedSkeletonMergeTask, DeleteSkeletonFilesTask,
ShardedFromUnshardedSkeletonMergeTask, SpatialIndexTask
ShardedFromUnshardedSkeletonMergeTask, SpatialIndexTask,
TransferSkeletonFilesTask
)

from .common import (
Expand Down

0 comments on commit 4736d98

Please sign in to comment.