Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions stubs/pyxdg/xdg/RecentFiles.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from _typeshed import Incomplete, StrOrBytesPath, StrPath
from _typeshed import StrOrBytesPath, StrPath
from collections.abc import Iterable

class RecentFiles:
Expand All @@ -8,11 +8,9 @@ class RecentFiles:
def parse(self, filename: StrPath | None = None) -> None: ...
def write(self, filename: StrOrBytesPath | None = None) -> None: ...
def getFiles(
self, mimetypes: Iterable[str] | None = None, groups: Iterable[Incomplete] | None = None, limit: int = 0
) -> list[StrPath]: ...
def addFile(
self, item: StrPath, mimetype: str, groups: Iterable[Incomplete] | None = None, private: bool = False
) -> None: ...
self, mimetypes: Iterable[str] | None = None, groups: Iterable[str] | None = None, limit: int = 0
) -> list[RecentFile]: ...
def addFile(self, item: StrPath, mimetype: str, groups: Iterable[str] | None = None, private: bool = False) -> None: ...
def deleteFile(self, item: RecentFile | StrPath) -> None: ...
def sort(self) -> None: ...

Expand All @@ -21,7 +19,7 @@ class RecentFile:
MimeType: str
Timestamp: str
Private: bool
Groups: list[Incomplete]
Groups: list[str]
def __init__(self) -> None: ...
def __cmp__(self, other: RecentFile) -> int: ...
def __lt__(self, other: RecentFile) -> bool: ...
Expand Down