From bce6af8d18c498be05222c17d24ca2f378068dc9 Mon Sep 17 00:00:00 2001 From: marceloprates Date: Mon, 3 Mar 2025 14:59:03 -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 a6a3c1c..85f8f71 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 -from draw import plot, presets +import prettymaps logging.basicConfig( level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s" ) -presets = presets().to_dict() +presets = prettymaps.presets().to_dict() # Set the title of the app st.title("prettymaps")