Skip to content

Commit

Permalink
more style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
scheibelp committed Apr 23, 2024
1 parent 564aba8 commit 59ec13d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modifiers/allocation/modifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def divide_into(dividend, divisor):
remainder.
"""
if divisor > dividend:
raise ValueError(f"Dividend must be larger than divisor")
raise ValueError("Dividend must be larger than divisor")
for x in [dividend, divisor]:
if not isinstance(x, int):
raise ValueError("Both values must be integers")
Expand Down

0 comments on commit 59ec13d

Please sign in to comment.