Source code for ralph.policy.explain.budget_counter_explanation
"""Explanation of a budget counter."""
from __future__ import annotations
from dataclasses import dataclass
[docs]
@dataclass
class BudgetCounterExplanation:
"""Explanation of a budget counter."""
name: str
description: str
tracks_budget: bool
default_max: int = 0