Skip to content

Commit 06baecd

Browse files
committed
fixed type
1 parent ac3fb5d commit 06baecd

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/tdamapper/app.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,12 @@ def main_page():
590590

591591
def main():
592592
port = os.getenv("PORT", "8080")
593-
ui.run(storage_secret="secret", title="tda-mapper-app", favicon=ICON_URL, port=port)
593+
ui.run(
594+
storage_secret="secret",
595+
title="tda-mapper-app",
596+
favicon=ICON_URL,
597+
port=int(port),
598+
)
594599

595600

596601
if __name__ in ["__main__", "__mp_main__", "tdamapper.app"]:

0 commit comments

Comments
 (0)