Skip to content

Commit

Permalink
Merge pull request #134 from brittonsmith/flake
Browse files Browse the repository at this point in the history
Fix flake8 error.
  • Loading branch information
brittonsmith committed May 20, 2020
2 parents 575717c + 7833170 commit f5144a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trident/roman.py
Expand Up @@ -100,7 +100,7 @@ def from_roman(s):
if not s:
raise InvalidRomanNumeralError('Input can not be blank')
if not romanNumeralPattern.search(s):
raise InvalidRomanNumeralError('Invalid Roman numeral: {s}'.format(s))
raise InvalidRomanNumeralError('Invalid Roman numeral: {0}'.format(s))

result = 0
index = 0
Expand Down

0 comments on commit f5144a0

Please sign in to comment.