li-nguyen commited on
Commit
05d12cb
·
1 Parent(s): dae8a3d

Move out of main call

Browse files
Files changed (1) hide show
  1. app.py +11 -10
app.py CHANGED
@@ -817,16 +817,17 @@ dashboard = vm.Dashboard(
817
  ),
818
  )
819
 
 
 
 
 
 
 
 
 
 
 
 
820
 
821
  if __name__ == "__main__":
822
- app = Vizro().build(dashboard)
823
- app.dash.layout.children.append(
824
- dbc.NavLink(
825
- ["Made with ", html.Img(src=get_asset_url("logo.svg"), id="banner", alt="Vizro logo"), "vizro"],
826
- href="https://github.com/mckinsey/vizro",
827
- target="_blank",
828
- className="anchor-container",
829
- )
830
- )
831
- server = app.dash.server
832
  app.run()
 
817
  ),
818
  )
819
 
820
+ app = Vizro().build(dashboard)
821
+ app.dash.layout.children.append(
822
+ dbc.NavLink(
823
+ ["Made with ", html.Img(src=get_asset_url("logo.svg"), id="banner", alt="Vizro logo"), "vizro"],
824
+ href="https://github.com/mckinsey/vizro",
825
+ target="_blank",
826
+ className="anchor-container",
827
+ )
828
+ )
829
+ server = app.dash.server
830
+
831
 
832
  if __name__ == "__main__":
 
 
 
 
 
 
 
 
 
 
833
  app.run()