psalama commited on
Commit
12a4fc3
·
1 Parent(s): d037418

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -43,9 +43,14 @@ def process_input(address, selected_option, additional_input):
43
  else:
44
  output_additional = f"Area (in 1000 GSF):\n{additional_input}"
45
 
46
- output_transport_analysis = (
47
- f"{transport_analysis_needed} (Because proposed developing units/space is larger than {threshold_value})"
48
- )
 
 
 
 
 
49
 
50
 
51
  # Replace 'Your Zone Calculation Logic' with the actual zone calculation code
 
43
  else:
44
  output_additional = f"Area (in 1000 GSF):\n{additional_input}"
45
 
46
+ if (transport_analysis_needed):
47
+ output_transport_analysis = (
48
+ f"{transport_analysis_needed} (Because proposed developing units/space is larger than {threshold_value})"
49
+ )
50
+ else:
51
+ output_transport_analysis = (
52
+ f"{transport_analysis_needed} (Because proposed developing units/space is smaller than {threshold_value})"
53
+ )
54
 
55
 
56
  # Replace 'Your Zone Calculation Logic' with the actual zone calculation code