Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
BjornFJohansson committed Nov 6, 2023
1 parent 4a893fd commit 8bb0dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pydna/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def smallest_rotation(s):
"""
from pydivsufsort import min_rotation

k = min_rotation(s)
k = min_rotation(bytes(s, "ascii"))
return s[k:] + s[:k]


Expand Down

0 comments on commit 8bb0dc6

Please sign in to comment.