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 fa07c59 commit e916fc7Copy full SHA for e916fc7
1 file changed
data_compression/coordinate_compression.py
@@ -65,9 +65,9 @@ def compress_coordinates(self) -> None:
65
>>> cc = CoordinateCompressor(arr)
66
>>> cc.coordinate_map[83]
67
2
68
- >>> cc.coordinate_map.get(80,-1) # Value not in the original list
+ >>> cc.coordinate_map[80] # Value not in the original list
69
-1
70
- >>> cc.reverse_map[2] # Value not in the original list
+ >>> cc.reverse_map[2]
71
83
72
"""
73
key = 0
0 commit comments