File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -360,8 +360,8 @@ def set_partial_values(self, key_start_values):
360
360
if start > len (values [key ]): # pragma: no cover
361
361
raise ValueError (
362
362
f"Cannot set value at start { start } , "
363
- + f"since it is beyond the data at key { key } , "
364
- + f"having length { len (values [key ])} ."
363
+ f"since it is beyond the data at key { key } , "
364
+ f"having length { len (values [key ])} ."
365
365
)
366
366
if start < 0 :
367
367
values [key ][start :] = value
@@ -429,7 +429,7 @@ def __init__(self, _type) -> None:
429
429
if _type not in self .valid_types : # pragma: no cover
430
430
raise ValueError (
431
431
f"Storage transformer cannot be initialized with type { _type } , "
432
- + f"must be one of { list (self .valid_types )} ."
432
+ f"must be one of { list (self .valid_types )} ."
433
433
)
434
434
self .type = _type
435
435
self ._inner_store = None
You can’t perform that action at this time.
0 commit comments