1
0
mirror of https://github.com/angr/pyvex synced 2026-06-21 13:47:01 +00:00
Files
angr-pyvex/pyvex/lifting/post_processor.py
Kevin Phoenix 23503e7919 Use black (#291)
* Use black

* Fix the lint error
2023-01-13 14:23:57 -07:00

17 lines
289 B
Python

#
# The post-processor base class
#
class Postprocessor:
def __init__(self, irsb):
self.irsb = irsb
def postprocess(self):
"""
Modify the irsb
All of the postprocessors will be used in the order that they are registered
"""
pass