Merge pull request #5 from Chaoyingz/patch-1

Fix indent
This commit is contained in:
David Beazley 2023-07-19 09:00:14 -05:00 committed by GitHub
commit 1d32c905f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ def read_portfolio(filename):
'name' : row[0],
'shares' : int(row[1]),
'price' : float(row[2])
}
}
portfolio.append(record)
return portfolio
```