dia-gov commited on
Commit
cf1b677
·
verified ·
1 Parent(s): 3ca8c62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -29,5 +29,8 @@ def main():
29
  except Exception as e:
30
  print(f"Error: {e}")
31
 
 
 
 
32
  if __name__ == "__main__":
33
- main()
 
29
  except Exception as e:
30
  print(f"Error: {e}")
31
 
32
+ # Add an `app` attribute to the module
33
+ app = main
34
+
35
  if __name__ == "__main__":
36
+ main()