Skip to content

Commit 313c8ef

Browse files
fix: changed return annotation to literal tuple to match test requirements
1 parent a639d80 commit 313c8ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Week04/functions_furkan_cetiner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def custom_equation(x: int = 0, y: int = 0, /, a: int = 1, b: int = 1, *, c: int
1717
return float((x**a + y**b) / c)
1818

1919
# 3. fn_w_counter: tracks total calls and caller names
20-
def fn_w_counter() -> tuple[int, dict[str, int]]:
20+
def fn_w_counter() -> (int, dict[str, int]):
2121
"""
2222
Counts the number of calls and tracks the caller (__name__).
2323
"""

0 commit comments

Comments
 (0)