Skip to content

Commit f42e8d1

Browse files
committed
fix fmt (by removing redundant comment)
1 parent de3f2a9 commit f42e8d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/command/commands/DexStepFunction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class DexStepFunction(CommandBase):
1717
def __init__(self, *args, **kwargs):
1818
if len(args) < 1:
1919
raise TypeError("expected 1 positional argument")
20-
self.function = str(args[0]) # Function name.
20+
self.function = str(args[0])
2121
self.hit_count = kwargs.pop("hit_count", None)
2222
if kwargs:
2323
raise TypeError(f"unexpected named args: {', '.join(kwargs)}")

0 commit comments

Comments
 (0)