From 9ca09a8b2c7c6a0547321fe03de698c75b5e45be Mon Sep 17 00:00:00 2001 From: marceloprates Date: Mon, 3 Mar 2025 14:54:29 -0300 Subject: [PATCH] updated app --- prettymaps/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prettymaps/app.py b/prettymaps/app.py index 85f8f71..a6a3c1c 100644 --- a/prettymaps/app.py +++ b/prettymaps/app.py @@ -2,13 +2,13 @@ import streamlit as st import logging from matplotlib import pyplot as plt import subprocess -import prettymaps +from draw import plot, presets logging.basicConfig( level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s" ) -presets = prettymaps.presets().to_dict() +presets = presets().to_dict() # Set the title of the app st.title("prettymaps")