7 lines
190 B
Python
7 lines
190 B
Python
# app/analyzers/static/base.py
|
|
from ..base import BaseAnalyzer
|
|
|
|
class StaticAnalyzer(BaseAnalyzer):
|
|
def cleanup(self):
|
|
"""Most static analyzers don't need cleanup"""
|
|
pass |