# HG changeset patch # User Cameron Simpson # Date 1745445086 -36000 # Thu Apr 24 07:51:26 2025 +1000 # Node ID ababb74fce637553eb018cb7e3caeb759e9d32ec # Parent 6b1671539f2c138d4a96396b395c08ce2300e6c0 cs.queues: fix typing annotation, failing on Python 3.8 diff --git a/lib/python/cs/queues.py b/lib/python/cs/queues.py --- a/lib/python/cs/queues.py +++ b/lib/python/cs/queues.py @@ -307,7 +307,7 @@ def __init__( self, name: str, - functor: Callable[Any, Iterable], + functor: Callable[[Any], Iterable], outQ, runstate: RunState, ):