Skip to content

Commit 3d5b1da

Browse files
authored
Merge pull request #91 from mlcommons/ruff
Update ruff version to 0.3.7 in requirements-dev.txt
2 parents c395bb2 + e3c71e1 commit 3d5b1da

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pyre-check==0.9.19
22
pyright==1.1.359
33
pytest==8.1.1
4-
ruff==0.3.5
4+
ruff==0.3.7
55
vulture==2.11

src/visualizer/visualizer.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,7 @@ def escape_label(label: str) -> str:
2626

2727

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

0 commit comments

Comments
 (0)