From e509df96f88a0fdf4a17bbf7d9ffa41fa82eaad7 Mon Sep 17 00:00:00 2001 From: scoopgracie Date: Mon, 16 Nov 2020 07:30:23 -0800 Subject: [PATCH] PEP 8 in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0557376..ecad1fa 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ parameter is the ticker symbol to look up. ## Basic data To get the current price of a share, get the `Stock`'s `current_price`. - krogerPrice = kroger.current_price + kroger_price = kroger.current_price To get the day gain in dollars, get the `Stock`'s `increase_dollars`. - krogerGainDollars = kroger.increase_dollars + kroger_gain_dollars = kroger.increase_dollars The same value as a percent is available in the `increase_percent` property. To indicate losses, these values are negative.