Skip to content

Commit e0f8689

Browse files
committed
Merge branch 'development' of github.com:gjbex/Python-software-engineering into development
2 parents 5f93037 + e40966b commit e0f8689

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source-code/typing/incorrect_02.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ def fib(n: int) -> int:
1010
return fib(n - 1) + fib(n - 2)
1111

1212
if __name__ == '__main__':
13-
n = int(sys.argv[1]) # type: str
13+
n: str = int(sys.argv[1])
1414
print(fib(n))

0 commit comments

Comments
 (0)