chore(core): Unify conditions order in debug if statements

M1nd3r/thp6
M1nd3r 4 weeks ago
parent 59830a032a
commit b0f7a7a3e9

@ -16,7 +16,7 @@ def is_ack_valid(cache: SessionThpCache | ChannelCache, sync_bit: int) -> bool:
def _is_ack_expected(cache: SessionThpCache | ChannelCache) -> bool:
is_expected: bool = not THP.sync_can_send_message(cache)
if not is_expected and __debug__:
if __debug__ and not is_expected:
log.debug(__name__, "Received unexpected ACK message")
return is_expected

Loading…
Cancel
Save