diff --git a/projects/sandbox/datagen/datagen/scripts/background.py b/projects/sandbox/datagen/datagen/scripts/background.py index 262e30c9..99a7b98a 100644 --- a/projects/sandbox/datagen/datagen/scripts/background.py +++ b/projects/sandbox/datagen/datagen/scripts/background.py @@ -16,7 +16,7 @@ def _intify(x: float): """ Converts the input float into an int if the two are equal (e.g., 4.0 == 4). - Otherwise, returns the input unchanged. + Otherwise, returns the input unchanged """ return int(x) if int(x) == x else x