File: weighted_rr.pyi

package info (click to toggle)
python-roundrobin 0.0.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 116 kB
  • sloc: python: 140; makefile: 5
file content (5 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (2)
1
2
3
4
5
from typing import Any, Callable, Tuple


def weighted(dataset: [Tuple[Any, int]]) -> Callable[[], Any]:
    def get_next() -> Any: ...