Fix missing f-str prefix

mkts_backup
Tyler Goodlet 2022-03-29 12:37:58 -04:00
parent e7b1d77b08
commit 319a6fb66a
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ class ShmArray:
if index < 0: if index < 0:
raise ValueError( raise ValueError(
f'Array size of {self._len} was overrun during prepend.\n' f'Array size of {self._len} was overrun during prepend.\n'
'You have passed {abs(index)} too many datums.' f'You have passed {abs(index)} too many datums.'
) )
end = index + length end = index + length