style: 修改检测模块文件名

This commit is contained in:
dqy 2024-05-29 21:23:26 +08:00
parent d2b0fb286c
commit 99b481059b

View File

@ -170,7 +170,9 @@ def process_path(path: str, output_format: str, mode: str, output_file=None):
def main(): def main():
import argparse import argparse
parser = argparse.ArgumentParser(description="Backdoor detection tool.") parser = argparse.ArgumentParser(
description="Backdoor detection tool.", prog="detection"
)
parser.add_argument("path", help="Path to the code to analyze") parser.add_argument("path", help="Path to the code to analyze")
parser.add_argument("-o", "--output", help="Output file path", default=None) parser.add_argument("-o", "--output", help="Output file path", default=None)
parser.add_argument( parser.add_argument(