Skip to content

Commit 4e8f2e7

Browse files
committed
cleaning up
1 parent ab59532 commit 4e8f2e7

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

codeflash/benchmarking/replay_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ def create_trace_replay_test_code(
115115
if function_name == "__init__":
116116
ret = {class_name_alias}(*args[1:], **kwargs)
117117
else:
118-
instance = args[0] # self
119118
ret = {class_name_alias}{method_name}(*args, **kwargs)
120119
"""
121120
)

tests/test_trace_benchmarks.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ def test_code_to_optimize_bubble_sort_codeflash_trace_Sorter_sorter():
111111
if function_name == "__init__":
112112
ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter(*args[1:], **kwargs)
113113
else:
114-
instance = args[0] # self
115114
ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter.sorter(*args, **kwargs)
116115
117116
def test_code_to_optimize_bubble_sort_codeflash_trace_Sorter_sort_class():
@@ -138,7 +137,6 @@ def test_code_to_optimize_bubble_sort_codeflash_trace_Sorter___init__():
138137
if function_name == "__init__":
139138
ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter(*args[1:], **kwargs)
140139
else:
141-
instance = args[0] # self
142140
ret = code_to_optimize_bubble_sort_codeflash_trace_Sorter(*args, **kwargs)
143141
144142
"""

0 commit comments

Comments
 (0)