From 6dbc2c78e5ef78c49a29ab1e3dc2f5f77d0c3d6e Mon Sep 17 00:00:00 2001 From: Arvedui Date: Sun, 1 Mar 2015 14:51:52 +0100 Subject: [PATCH] remove the module specific and hard coded interval in cpu_usage --- i3pystatus/cpu_usage.py | 1 - 1 file changed, 1 deletion(-) diff --git a/i3pystatus/cpu_usage.py b/i3pystatus/cpu_usage.py index 8897c22..0f353bb 100644 --- a/i3pystatus/cpu_usage.py +++ b/i3pystatus/cpu_usage.py @@ -40,7 +40,6 @@ class CpuUsage(IntervalModule): def init(self): self.prev_total = defaultdict(int) self.prev_busy = defaultdict(int) - self.interval = 1 self.formatter = Formatter() def get_cpu_timings(self):