Fix indent

This commit is contained in:
Chaoying 2023-07-19 11:22:22 +08:00 committed by GitHub
parent 0dc60e5698
commit d26ca87a05
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
```