add stub for quieter linting with gettext

This commit is contained in:
Alfredo Monclus 2024-06-21 14:32:44 -03:00
parent 9a1e1bafa1
commit 6ea64739bd

5
__builtins__.pyi Normal file
View File

@ -0,0 +1,5 @@
from typing import Callable
def _(message: str) -> str: ...
def ngettext(singular: str, plural: str, n: int) -> str: ...