From d3fd77166223ef708a6bce68706fb567bec1b267 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Fri, 20 Dec 2024 22:11:28 -0400 Subject: [PATCH] Update counter.pyx --- a_sync/primitives/locks/counter.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a_sync/primitives/locks/counter.pyx b/a_sync/primitives/locks/counter.pyx index 8ad72bcb..cbba89cd 100644 --- a/a_sync/primitives/locks/counter.pyx +++ b/a_sync/primitives/locks/counter.pyx @@ -210,7 +210,7 @@ cdef class CounterLock(_DebugDaemonMixin): while self._events: now = time(NULL) self.get_logger().debug( - "%s is still locked after %sm", self, round((now - start) / 60, 2) + "%s is still locked after %.2fm", self, (now - start) / 60) ) await sleep(300)