summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2023-09-04 22:15:42 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2023-09-04 22:15:42 +0200
commit98796a2f0d8e5d816dcc5d710ae3a9d5229f5c8d (patch)
tree28f1a1e5b34939e4b137f7bd5e2ecfdfa9f1a09e /src
parent1fd8b52f6b10557f0681fc9a4235294cefc0b4b3 (diff)
replace flake8 by ruff
Diffstat (limited to 'src')
-rw-r--r--src/borg/item.pyi4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/borg/item.pyi b/src/borg/item.pyi
index 19192f528..8cb2df43d 100644
--- a/src/borg/item.pyi
+++ b/src/borg/item.pyi
@@ -1,4 +1,4 @@
-from typing import FrozenSet, Set, NamedTuple, Tuple, Mapping, Dict, List, Iterator, Callable, Any, Optional
+from typing import Set, NamedTuple, Tuple, Mapping, Dict, List, Iterator, Callable, Any, Optional
from .helpers import StableDict
@@ -96,7 +96,7 @@ class ArchiveItem(PropDict):
def items(self, val: List) -> None: ...
@property
def item_ptrs(self) -> List: ...
- @items.setter
+ @item_ptrs.setter
def item_ptrs(self, val: List) -> None: ...
class ChunkListEntry(NamedTuple):