def __iadd__(self, other): """ Increment the current value of the metric. """ args = (self.__ptr, int(other)) _ec.metric_inc(args) return self
def __iadd__(self, other): args = (self.__ptr, int(other)) _ec.metric_inc(args) return self