From 24f77b5582ebfef3ba6fcb49d059d03b995a4926 Mon Sep 17 00:00:00 2001 From: Max Gagnon <82063767+maxwellgagnon@users.noreply.github.com> Date: Mon, 22 Jan 2024 17:55:34 -0600 Subject: [PATCH] Update shared.py to handle the amount of fields for lbm scans --- python/pipeline/shared.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pipeline/shared.py b/python/pipeline/shared.py index e90f4282..8b4945f1 100644 --- a/python/pipeline/shared.py +++ b/python/pipeline/shared.py @@ -10,9 +10,9 @@ @schema class Field(dj.Lookup): definition = """ # fields in mesoscope scans - field : tinyint + field : smallint """ - contents = [[i] for i in range(1, 25)] + contents = [[i] for i in range(1, 150)] @schema class Channel(dj.Lookup):