Updated the indent to 2 spaced

Updated everything according to the comments
This commit is contained in:
Animesh
2020-07-28 16:29:25 +05:30
committed by GitHub
parent 74fb5d3449
commit 10fd98764e

View File

@ -9,7 +9,7 @@ Use the `range` function and step up the same integer to find multiples.
```py
def find_multiples(integer, limit):
return list(range(integer,limit+1, integer))
return list(range(integer,limit+1, integer))
```
```py