Fix return type of calendar.HTMLCalendar.formatyearpage (#11413)

This commit is contained in:
Riley Miļeško
2024-02-12 22:50:32 +00:00
committed by GitHub
parent 4585c714d9
commit 5382d24d1d

View File

@@ -124,7 +124,7 @@ class HTMLCalendar(Calendar):
def formatyear(self, theyear: int, width: int = 3) -> str: ...
def formatyearpage(
self, theyear: int, width: int = 3, css: str | None = "calendar.css", encoding: str | None = None
) -> str: ...
) -> bytes: ...
class different_locale:
def __init__(self, locale: _LocaleType) -> None: ...