Skip to content

Instantly share code, notes, and snippets.

View hakancelikdev's full-sized avatar
🏠
Working from home

Hakan Çelik hakancelikdev

🏠
Working from home
View GitHub Profile
from __future__ import annotations
from typing import Callable, Optional, TypeVar, Any
Function = TypeVar("Function", bound=Callable[..., Any])
class ReDefineFunctionException(BaseException):
pass