mirror of
https://github.com/mandiant/capa.git
synced 2026-02-04 19:12:01 -08:00
11 lines
235 B
Python
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()
|