From df2c7106ab621d47f82e330328afcd8a6764f1e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jord=C3=A0=20Polo?= Date: Mon, 29 Jul 2024 14:01:23 -0500 Subject: [PATCH] Fix call to method --- omnistat/collector_rms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/omnistat/collector_rms.py b/omnistat/collector_rms.py index fd94d524..c2370b16 100644 --- a/omnistat/collector_rms.py +++ b/omnistat/collector_rms.py @@ -200,7 +200,7 @@ def updateMetrics(self): # Check for user supplied annotations if self.__annotationsEnabled: - updateAnnotations(jobid=results["RMS_JOB_ID"]) + self.updateAnnotations(results["RMS_JOB_ID"]) # Case when no job detected else: @@ -210,7 +210,7 @@ def updateMetrics(self): return - def updateAnnotations(jobid): + def updateAnnotations(self, jobid): # Reset annotations when a new job is running if jobid != self.__annotationsJobID: self.__spans = {}