Skip to content

Commit

Permalink
Fix ruff error in src/visualizer/visualizer.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TaekyungHeo committed Jun 11, 2024
1 parent 1491761 commit e3c71e1
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/visualizer/visualizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,7 @@ def escape_label(label: str) -> str:


def main() -> None:
"""
Main function for the Execution Trace Visualizer.
This function parses command-line arguments, reads the input Chakra execution trace file,
and generates an output graph file in the specified format (PDF, DOT, or GraphML).
"""
"""Generate an output graph file in the specified format (PDF, DOT, or GraphML)."""
parser = argparse.ArgumentParser(description="Execution Trace Visualizer")
parser.add_argument("--input_filename", type=str, required=True, help="Input Chakra execution trace filename")
parser.add_argument(
Expand Down

0 comments on commit e3c71e1

Please sign in to comment.