Files
capa/capa/perf.py
Willi Ballenthin 56d075fd32 typing
2022-12-14 11:08:46 +01:00

11 lines
235 B
Python

import typing
import collections
# this structure is unstable and may change before the next major release.
counters: typing.Counter[str] = collections.Counter()
def reset():
global counters
counters = collections.Counter()