Skip to content

Commit f747b66

Browse files
committed
missed there
1 parent 94a99a9 commit f747b66

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_function_dependencies.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ def test_class_method_dependencies() -> None:
163163
== """# file: test_function_dependencies.py
164164
from collections import defaultdict
165165
166+
166167
class Graph:
167168
def __init__(self, vertices):
168169
self.graph = defaultdict(list)

tests/test_get_helper_code.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,7 @@ def dep2_swap(arr, j):
427427
from code_to_optimize.bubble_sort_dep1_helper import dep1_comparer
428428
from code_to_optimize.bubble_sort_dep2_swap import dep2_swap
429429
430+
430431
def sorter_deps(arr):
431432
for i in range(len(arr)):
432433
for j in range(len(arr) - 1):

0 commit comments

Comments
 (0)