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

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
```