From 59ec13dc1d2642aecdbf05c09d3eb48ec76da541 Mon Sep 17 00:00:00 2001 From: Peter Josef Scheibel Date: Tue, 23 Apr 2024 16:36:11 -0700 Subject: [PATCH] more style fixes --- modifiers/allocation/modifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modifiers/allocation/modifier.py b/modifiers/allocation/modifier.py index 499fc6a2b..471fbe8cb 100644 --- a/modifiers/allocation/modifier.py +++ b/modifiers/allocation/modifier.py @@ -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")