Skip to content

Commit

Permalink
Update src/gemdat/jumps.py
Browse files Browse the repository at this point in the history
Co-authored-by: SCiarella <[email protected]>
  • Loading branch information
stefsmeets and SCiarella authored Jun 6, 2024
1 parent aaa2be1 commit 0d32191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gemdat/jumps.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ def _counter(self) -> Counter[tuple[int, int]]:
Returns
-------
counter : dict[tuple[i, i], int]
Dictionary with number of jumps per sites combination
counter : Counter[tuple[int, int], int]
Dictionary with site pairs as keys and corresponding number of jumps as dictionary values
"""
counter = Counter(zip(self.data['start site'], self.data['destination site']))
return counter
Expand Down

0 comments on commit 0d32191

Please sign in to comment.