Skip to content

Commit

Permalink
Update lib/rasr_cache.py
Browse files Browse the repository at this point in the history
Co-authored-by: Albert Zeyer <[email protected]>
  • Loading branch information
Icemole and albertz authored Sep 23, 2024
1 parent b14026f commit 1f831ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rasr_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ def __init__(self, filename):
self.densities[n, 1] = cov_idx

self.num_mixtures = self.read_u32()
self.mixtures: List[Optional[Tuple[List[int], List[float]]]] = [None] * self.num_mixtures # nopep8
self.mixtures: List[Optional[Tuple[List[int], List[float]]]] = [None] * self.num_mixtures
for n in range(self.num_mixtures):
num_densities = self.read_u32()
dns_idx = []
Expand Down

0 comments on commit 1f831ff

Please sign in to comment.