File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -279,7 +279,7 @@ def _expand_qualified_functions(self) -> set[str]:
279279 # Find class methods and add their containing classes and dunder methods
280280 for qualified_name in list (self .qualified_function_names ):
281281 if "." in qualified_name :
282- class_name , method_name = qualified_name .split ("." , 1 )
282+ class_name , _method_name = qualified_name .split ("." , 1 )
283283
284284 # Add the class itself
285285 expanded .add (class_name )
@@ -511,7 +511,7 @@ def revert_unused_helper_functions(
511511 if not unused_helpers :
512512 return
513513
514- logger .info (f"Reverting { len (unused_helpers )} unused helper function(s) to original definitions" )
514+ logger .debug (f"Reverting { len (unused_helpers )} unused helper function(s) to original definitions" )
515515
516516 # Group unused helpers by file path
517517 unused_helpers_by_file = defaultdict (list )
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ def generate_and_instrument_tests(
304304 ]
305305
306306 with progress_bar (
307- f"Generating new tests and optimizations for function { self .function_to_optimize .function_name } " ,
307+ f"Generating new tests and optimizations for function ' { self .function_to_optimize .function_name } ' " ,
308308 transient = True ,
309309 revert_to_print = bool (get_pr_number ()),
310310 ):
@@ -1657,8 +1657,8 @@ def establish_original_code_baseline(
16571657
16581658 loop_count = max ([int (result .loop_index ) for result in benchmarking_results .test_results ])
16591659 logger .info (
1660- f"h2 |⌚ Original code summed runtime measured over { loop_count } loop{ 's' if loop_count > 1 else '' } : "
1661- f"{ humanize_runtime (total_timing )} per full loop"
1660+ f"h3 |⌚ Original code summed runtime measured over ' { loop_count } ' loop{ 's' if loop_count > 1 else '' } : "
1661+ f"' { humanize_runtime (total_timing )} ' per full loop"
16621662 )
16631663 console .rule ()
16641664 logger .debug (f"Total original code runtime (ns): { total_timing } " )
You can’t perform that action at this time.
0 commit comments