From 1264c2145e9dae6d573cf9efd0e6d22dadd3c906 Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Sat, 20 Apr 2024 14:40:41 -0500 Subject: [PATCH] chore: refactor folder structure a bit, maybe too much yak shaving --- tantri/__init__.py | 2 +- .../__init__.py} | 0 .../__snapshots__/test_simple_telegraph_time_series.ambr | 0 .../{ => simple_telegraph}/test_simple_telegraph_time_series.py | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename tantri/{simple_telegraph_time_series.py => simple_telegraph/__init__.py} (100%) rename tests/{ => simple_telegraph}/__snapshots__/test_simple_telegraph_time_series.ambr (100%) rename tests/{ => simple_telegraph}/test_simple_telegraph_time_series.py (100%) diff --git a/tantri/__init__.py b/tantri/__init__.py index 2dacc30..411e256 100755 --- a/tantri/__init__.py +++ b/tantri/__init__.py @@ -1,6 +1,6 @@ import logging from tantri.meta import __version__ -from tantri.simple_telegraph_time_series import SimpleTelegraphTimeSeries +from tantri.simple_telegraph import SimpleTelegraphTimeSeries def get_version(): diff --git a/tantri/simple_telegraph_time_series.py b/tantri/simple_telegraph/__init__.py similarity index 100% rename from tantri/simple_telegraph_time_series.py rename to tantri/simple_telegraph/__init__.py diff --git a/tests/__snapshots__/test_simple_telegraph_time_series.ambr b/tests/simple_telegraph/__snapshots__/test_simple_telegraph_time_series.ambr similarity index 100% rename from tests/__snapshots__/test_simple_telegraph_time_series.ambr rename to tests/simple_telegraph/__snapshots__/test_simple_telegraph_time_series.ambr diff --git a/tests/test_simple_telegraph_time_series.py b/tests/simple_telegraph/test_simple_telegraph_time_series.py similarity index 100% rename from tests/test_simple_telegraph_time_series.py rename to tests/simple_telegraph/test_simple_telegraph_time_series.py