Skip to content

Instantly share code, notes, and snippets.

View demetrius-mp's full-sized avatar
🎯
Focusing

Demetrius Panovitch demetrius-mp

🎯
Focusing
View GitHub Profile
from dataclasses import dataclass
from functools import wraps
from typing import Callable, Concatenate, ParamSpec, TypeVar
def h1(text: str) -> str:
"""Creates an h1."""
return "# " + text