Dane Sabo 3299181c70 Auto sync: 2025-09-02 22:47:53 (10335 files changed)
M  lazy-lock.json

M  lua/custom/configs/lspconfig.lua

M  lua/custom/init.lua

A  lua/custom/journal.lua

A  nvim_venv/bin/Activate.ps1

A  nvim_venv/bin/activate

A  nvim_venv/bin/activate.csh

A  nvim_venv/bin/activate.fish
2025-09-02 22:47:53 -04:00

35 lines
800 B
Python

from collections.abc import Callable
from typing import Any, TypeVar, overload
_T = TypeVar('_T')
def kwarg_doc(text: str) -> Callable[[_T], _T]: ...
class Substitution:
@overload
def __init__(self, *args: str): ...
@overload
def __init__(self, **kwargs: str): ...
def __call__(self, func: _T) -> _T: ...
def update(self, *args, **kwargs): ... # type: ignore[no-untyped-def]
class _ArtistKwdocLoader(dict[str, str]):
def __missing__(self, key: str) -> str: ...
class _ArtistPropertiesSubstitution:
def __init__(self) -> None: ...
def register(self, **kwargs) -> None: ...
def __call__(self, obj: _T) -> _T: ...
def copy(source: Any) -> Callable[[_T], _T]: ...
dedent_interpd: _ArtistPropertiesSubstitution
interpd: _ArtistPropertiesSubstitution