From 4aef39bccadcb81f0c43f95f0c75d459ff064c9b Mon Sep 17 00:00:00 2001 From: Lucas Gomide Date: Mon, 9 Mar 2026 09:58:08 -0300 Subject: [PATCH] chore: remove redundant qoute annotation --- lib/crewai/src/crewai/flow/flow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/crewai/src/crewai/flow/flow.py b/lib/crewai/src/crewai/flow/flow.py index 00d4a2713..64c4059ad 100644 --- a/lib/crewai/src/crewai/flow/flow.py +++ b/lib/crewai/src/crewai/flow/flow.py @@ -522,7 +522,7 @@ class LockedListProxy(list, Generic[T]): # type: ignore[type-arg] def __radd__(self, other: list[T]) -> list[T]: return other + self._list - def __iadd__(self, other: Iterable[T]) -> "LockedListProxy[T]": + def __iadd__(self, other: Iterable[T]) -> LockedListProxy[T]: with self._lock: self._list += list(other) return self @@ -533,7 +533,7 @@ class LockedListProxy(list, Generic[T]): # type: ignore[type-arg] def __rmul__(self, n: SupportsIndex) -> list[T]: return self._list * n - def __imul__(self, n: SupportsIndex) -> "LockedListProxy[T]": + def __imul__(self, n: SupportsIndex) -> LockedListProxy[T]: with self._lock: self._list *= n return self @@ -632,7 +632,7 @@ class LockedDictProxy(dict, Generic[T]): # type: ignore[type-arg] def __ror__(self, other: dict[str, T]) -> dict[str, T]: return other | self._dict - def __ior__(self, other: dict[str, T]) -> "LockedDictProxy[T]": + def __ior__(self, other: dict[str, T]) -> LockedDictProxy[T]: with self._lock: self._dict |= other return self