Skip to content

Commit

Permalink
spacing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamSwayne committed Nov 27, 2023
1 parent b25718b commit 6496383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linear_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def calculate(floors=1, xLength=1, yLength=1):
logs.append("Oak tree acres: " + str(abs(oakTreeAcres.value)))
logs.append("Slash pine acres: " + str(abs(slashPineAcres.value)))
logs.append("Eucalyptus tree acres: " + str(abs(eucalyptusTreeAcres.value)))
logs.append("Number of parking spaces needed: " + str(int(xLength*yLength*floors/9)))
logs.append("\nNumber of parking spaces needed: " + str(int(xLength*yLength*floors/9)))

# get arguments from command line
if len(sys.argv) == 4 or len(sys.argv) == 5:
Expand Down

0 comments on commit 6496383

Please sign in to comment.