File: __init__.py

package info (click to toggle)
markdown-callouts 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 416 kB
  • sloc: python: 195; sh: 17; makefile: 15
file content (11 lines) | stat: -rw-r--r-- 289 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
from __future__ import annotations

__version__ = "0.4.0"


def __getattr__(name: str):
    if name in {"CalloutsExtension", "makeExtension"}:
        from . import callouts

        return getattr(callouts, name)
    raise AttributeError(f"module {__name__!r} has no attribute {name!r}")