Fix missing f-str prefix
							parent
							
								
									e7b1d77b08
								
							
						
					
					
						commit
						319a6fb66a
					
				| 
						 | 
					@ -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
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue