Skip to content

Commit 0feed0b

Browse files
authored
Update CONTRIBUTING.md (TheAlgorithms#1886)
1 parent 8c01da2 commit 0feed0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ We want your work to be readable by others; therefore, we encourage you to note
138138
The use of [Python type hints](https://docs.python.org/3/library/typing.html) is encouraged for function parameters and return values. Our automated testing will run [mypy](http://mypy-lang.org) so run that locally before making your submission.
139139

140140
```python
141-
def sum_ab(a: int, b: int) --> int:
141+
def sum_ab(a: int, b: int) -> int:
142142
return a + b
143143
```
144144

0 commit comments

Comments
 (0)