"""Flask integration.""" try: from flask import g except ImportError: g = None __all__ = ["get_correlation_id"] def get_correlation_id() -> str | None: """Get the correlation from flask g. :return: correlation id str got from flask or None """ return getattr(g, "correlation_id", None)