From 8423db31933fba91c139b30f754e5c5073a76927 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 27 May 2022 21:05:51 +0200 Subject: [PATCH] restructure --- stand.py | 2 +- {hacks => stand/hacks}/__init__.py | 0 {hacks => stand/hacks}/patch_st_cp_stop.py | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {hacks => stand/hacks}/__init__.py (100%) rename {hacks => stand/hacks}/patch_st_cp_stop.py (100%) diff --git a/stand.py b/stand.py index 7846e06..a1f7dc4 100644 --- a/stand.py +++ b/stand.py @@ -1,6 +1,6 @@ import streamlit as st -import hacks +import stand.hacks from stand.widgets.aggrid import aggrid from stand.widgets.download import download diff --git a/hacks/__init__.py b/stand/hacks/__init__.py similarity index 100% rename from hacks/__init__.py rename to stand/hacks/__init__.py diff --git a/hacks/patch_st_cp_stop.py b/stand/hacks/patch_st_cp_stop.py similarity index 100% rename from hacks/patch_st_cp_stop.py rename to stand/hacks/patch_st_cp_stop.py