counter: add reset();

This commit is contained in:
Konstantin Baierer 2021-03-12 18:39:27 +01:00
parent a3465ca1a0
commit a678bbf966
2 changed files with 11 additions and 2 deletions

View file

@ -7,8 +7,13 @@ class EynollahIdCounter():
def __init__(self, region_idx=0, line_idx=0):
self._counter = Counter()
self.set('region', region_idx)
self.set('line', line_idx)
self._inital_region_idx = region_idx
self._inital_line_idx = line_idx
self.reset()
def reset(self):
self.set('region', self._inital_region_idx)
self.set('line', self._inital_line_idx)
def inc(self, name, val=1):
self._counter.update({name: val})