Skip to content

Commit

Permalink
Fix isinstance for data_layers
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldenAnpu committed Aug 23, 2024
1 parent 5c6f3aa commit c991700
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/ui/tabs/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,12 @@ def _run():
for l in net.layers
if isinstance(
l,
FilteredProjectLayer,
ImagesProjectLayer,
InputLabelingJobLayer,
VideosProjectLayer,
(
FilteredProjectLayer,
ImagesProjectLayer,
InputLabelingJobLayer,
VideosProjectLayer,
),
)
]

Expand Down

0 comments on commit c991700

Please sign in to comment.