[stubsabot] Bump python-crontab to 3.3.* (#14409)

This commit is contained in:
Semyon Moroz
2025-07-14 10:24:28 +00:00
committed by GitHub
parent 9a0eaf8df5
commit c1613b2ebe
3 changed files with 25 additions and 20 deletions
+3
View File
@@ -1,6 +1,7 @@
from _typeshed import StrOrBytesPath
from codecs import StreamReaderWriter
from collections.abc import Generator, Iterator
from datetime import datetime
from types import TracebackType
from typing_extensions import Self
@@ -20,6 +21,8 @@ class LogReader:
def __iter__(self) -> Iterator[str]: ...
def readlines(self, until: int = ...) -> Generator[tuple[int, str], None, None]: ...
def cron_date_to_datetime(cron_str: str) -> datetime: ...
class CronLog(LogReader):
user: str | None
def __init__(self, filename: StrOrBytesPath = ..., user: str | None = ...) -> None: ...