From b251ee13c4f575905735160eca54ce1abbada45d Mon Sep 17 00:00:00 2001 From: wendtalexander Date: Fri, 4 Oct 2024 15:31:41 +0200 Subject: [PATCH] [refactoring] spelling --- pyrelacs/dataio/circbuffer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrelacs/dataio/circbuffer.py b/pyrelacs/dataio/circbuffer.py index ce4f887..d409922 100644 --- a/pyrelacs/dataio/circbuffer.py +++ b/pyrelacs/dataio/circbuffer.py @@ -29,7 +29,7 @@ class CircBuffer: def channel_count(self): return self.__channels - def totocount(self, channel: int = 0): + def totalcount(self, channel: int = 0): return self.__totalcount[channel] def is_full(self, channel: int = 0):