mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 23:00:43 -08:00
Python: Fix Flake8 issue E712 + PEP8 variable naming
This commit is contained in:
@@ -81,7 +81,7 @@ class Stock_Market:
|
||||
|
||||
print("\nWHAT IS YOUR TRANSACTION IN")
|
||||
flag = False
|
||||
while flag != True:
|
||||
while not flag:
|
||||
new_holdings = []
|
||||
for stock in self.data.keys():
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user