Skip to content

Commit 54918b0

Browse files
authored
Fix formatting issues in functions_tarik_bozgan.py
1 parent 9428d94 commit 54918b0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Week04/functions_tarik_bozgan.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ def custom_equation(x: int = 0, y: int = 0, /, a: int = 1, b: int = 1, *, c: int
1414
"""
1515
return (x**a + y**b) / c
1616

17-
1817
def fn_w_counter() -> tuple[int, dict[str, int]]:
1918
caller = __name__
2019

@@ -23,4 +22,4 @@ def fn_w_counter() -> tuple[int, dict[str, int]]:
2322

2423
fn_w_counter.callers[caller] = fn_w_counter.callers.get(caller, 0) + 1
2524

26-
return fn_w_counter.total, fn_w_counter.callers.copy()
25+
return fn_w_counter.total, fn_w_counter.callers.copy()

0 commit comments

Comments
 (0)