Skip to content

Commit b3009db

Browse files
Update docs/src/compute/populate.md
Co-authored-by: Copilot <[email protected]>
1 parent 220eaf8 commit b3009db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/compute/populate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ class ImageAnalysis(dj.Computed):
233233

234234
def make(self, key):
235235
image_data = (Image & key).fetch1('image')
236-
computed_result = yield (image, ) # pack fetched_data
236+
computed_result = yield (image_data, ) # pack fetched_data
237237

238238
if computed_result is None:
239239
# Expensive computation that could take hours

0 commit comments

Comments
 (0)