Skip to content

Commit

Permalink
Update decompose.py
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mer authored Oct 18, 2021
1 parent a8f9a6b commit 4ffc3db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions decompose/decompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ def Convert(lst):
app.mount("/dist", StaticFiles(directory="dist"), name="dist")
app.mount("/js", StaticFiles(directory="dist/js"), name="js")
app.mount("/css", StaticFiles(directory="dist/css"), name="css")
app.mount("/img", StaticFiles(directory="dist/img"), name="img")
templates = Jinja2Templates(directory="templates/")


Expand Down Expand Up @@ -184,4 +183,4 @@ def home(request: Request):


if __name__ == '__main__':
uvicorn.run(app, host="0.0.0.0", port=8080)
uvicorn.run(app, host="0.0.0.0", port=8080)

0 comments on commit 4ffc3db

Please sign in to comment.