Skip to content

Commit e916fc7

Browse files
Update coordinate_compression.py
1 parent fa07c59 commit e916fc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_compression/coordinate_compression.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ def compress_coordinates(self) -> None:
6565
>>> cc = CoordinateCompressor(arr)
6666
>>> cc.coordinate_map[83]
6767
2
68-
>>> cc.coordinate_map.get(80,-1) # Value not in the original list
68+
>>> cc.coordinate_map[80] # Value not in the original list
6969
-1
70-
>>> cc.reverse_map[2] # Value not in the original list
70+
>>> cc.reverse_map[2]
7171
83
7272
"""
7373
key = 0

0 commit comments

Comments
 (0)