Skip to content

Commit 1860fe2

Browse files
committed
minor changes
1 parent 198a8b6 commit 1860fe2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

visualizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
argument_parser = argparse.ArgumentParser(description='Visualize C++ / Python code')
88
argument_parser.add_argument('mode', choices=['cpp', 'py'])
99
argument_parser.add_argument('--target', required=True,
10-
help='Directory / file to parse')
10+
help='Directory to parse')
1111
argument_parser.add_argument('--scale', required=False, default=1, type=float,
1212
help='Scale of all objects')
1313
argument_parser.add_argument('-b', '--bruteforce', action='store_true',

visualizer/visualizer.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# and compress it into a lightweight and standardized tree that is easy to visualize.
33
import random
44
from pprint import pprint
5+
import sys
56

67
import arcade
78
import enum
89
import os.path
9-
import sys
1010
import time
1111

1212
import clang.cindex
@@ -572,4 +572,3 @@ def on_mouse_press(self, x: float, y: float, button: int, modifiers: int):
572572

573573
def on_mouse_release(self, x: float, y: float, button: int, modifiers: int):
574574
pass
575-
#print("Mouse button released", x, y, button, modifiers)

0 commit comments

Comments
 (0)