Skip to content

Commit be16b2b

Browse files
committed
remove conversion to int to avoid error if letters
1 parent 3de984c commit be16b2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/foraging_gui/Foraging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1634,7 +1634,7 @@ def _GetProtocol(self, mouse_id):
16341634
protocol = 2414
16351635

16361636
self.Metadata_dialog.meta_data["session_metadata"]["IACUCProtocol"] = (
1637-
str(int(protocol))
1637+
str(protocol)
16381638
)
16391639
self.Metadata_dialog._update_metadata(
16401640
update_rig_metadata=False, update_session_metadata=True

0 commit comments

Comments
 (0)