Fix missing f-str prefix

fqsns
Tyler Goodlet 2022-03-29 12:37:58 -04:00
parent 81cd696ec8
commit 8df614465c
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ class ShmArray:
if index < 0:
raise ValueError(
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