mirror of
https://github.com/mandiant/capa.git
synced 2026-01-21 08:53:27 -08:00
10 lines
185 B
Python
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"
|