Files
capa/capa/features/basicblock.py
William Ballenthin b9d017ad10 pep8
2020-07-01 12:43:12 -06:00

10 lines
185 B
Python

from capa.features import Feature
class BasicBlock(Feature):
def __init__(self):
super(BasicBlock, self).__init__([])
def __str__(self):
return "basic block"