We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0daccd4 commit a746e78Copy full SHA for a746e78
1 file changed
behavior_data_visualizer/main.py
@@ -182,6 +182,8 @@ def get_mouse_data_dict(project_name):
182
data = dft.add_day_column_to_df(data)
183
# add it to the dictionary
184
mouse_data_dict[path.name] = data
185
+ # sort the dictionary
186
+ mouse_data_dict = dict(sorted(mouse_data_dict.items()))
187
# pass it to utils to make it global
188
utils.set_mouse_data_dict(mouse_data_dict)
189
# return the data
0 commit comments