We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17336f commit d297d58Copy full SHA for d297d58
ibllib/atlas/flatmaps.py
@@ -1,7 +1,7 @@
1
"""
2
Module that hold techniques to project the brain volume onto 2D images for visualisation purposes
3
4
-from functools import lru_cache, cache
+from functools import lru_cache
5
import logging
6
7
import pandas as pd
@@ -209,7 +209,7 @@ def format_coord(x, y):
209
return ax
210
211
212
-@cache
+@lru_cache(maxsize=None)
213
def _swanson_labels_positions():
214
215
This functions computes label positions to overlay on the Swanson flatmap
0 commit comments