Skip to content

Commit

Permalink
Fix error message in CigarActions
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Oct 28, 2024
1 parent fc95937 commit e7b5513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aligntools/cigar_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class CigarActions(IntEnum):
def parse(value: str) -> 'CigarActions':
ret = OP_MAPPING.get(value)
if ret is None:
raise ex.ParseError(f"Invalid action: {value}")
raise ex.ParseError(f"Invalid action: {value!r}.")
return ret

def __str__(self) -> str:
Expand Down

0 comments on commit e7b5513

Please sign in to comment.