Loco-CTO / Rystal-V6-Experiments

Unnecessary lambda expression PYL-W0108
Anti-pattern
Major
1 occurrence in this check
Lambda may not be necessary
202        if recipient_data["receive_limit_reached"] and not force:
203            remaining_time = cooldown_period - (now - last_received)
204            hours, minutes, seconds = map(
205                lambda x: int(x),206                [
207                    remaining_time.seconds // 3600,
208                    remaining_time.seconds % 3600 // 60,