Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docs/src/compute/populate.md
Co-authored-by: Copilot <[email protected]>
  • Loading branch information
dimitri-yatsenko and Copilot authored Jul 29, 2025
commit b3009dbc5b5a0bcd0a6c95499cb2f1d05ea95310
2 changes: 1 addition & 1 deletion docs/src/compute/populate.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ class ImageAnalysis(dj.Computed):

def make(self, key):
image_data = (Image & key).fetch1('image')
computed_result = yield (image, ) # pack fetched_data
computed_result = yield (image_data, ) # pack fetched_data

if computed_result is None:
# Expensive computation that could take hours
Expand Down
Loading