AhmedSSoliman commited on
Commit
d175844
·
1 Parent(s): d346174

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -203,9 +203,9 @@ def main():
203
  st.subheader('Error Correction')
204
  formatter = PythonCodeFormatter(output_code)
205
  formatted_code = formatter.format()
206
- #st.write('Code after correction:')
207
  #st.write(formatted_code)
208
- st.subheader('Code after correction:')
209
  st.code(formatted_code, language='python')
210
 
211
 
 
203
  st.subheader('Error Correction')
204
  formatter = PythonCodeFormatter(output_code)
205
  formatted_code = formatter.format()
206
+ st.write('Code after correction:')
207
  #st.write(formatted_code)
208
+ #st.subheader('Code after correction:')
209
  st.code(formatted_code, language='python')
210
 
211