class StaticVisitor(ast.NodeVisitor):
"""
AST 노드를 순회하며 위험한 함수 호출을 탐지하는 방문자 클래스
ast.NodeVisitor를 상속받아 AST 트리를 순회합니다.
"""
def __init__(self):
"""
초기화 메서드
발견된 이슈를 저장할 리스트를 초기화합니다.
"""
self.issues = []