From 558f7487599588ea77cb1e6da39004217cff3993 Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Tue, 15 Apr 2025 14:39:08 +0200 Subject: [PATCH] Renamed files to fit coding scheme --- aabiot/__init__.py | 4 ---- mipyiot/__init__.py | 4 ++++ aabiot/DoubleReset.py => mipyiot/doublereset.py | 0 aabiot/LED.py => mipyiot/led.py | 0 {aabiot => mipyiot}/wiegand.py | 0 5 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 aabiot/__init__.py create mode 100644 mipyiot/__init__.py rename aabiot/DoubleReset.py => mipyiot/doublereset.py (100%) rename aabiot/LED.py => mipyiot/led.py (100%) rename {aabiot => mipyiot}/wiegand.py (100%) diff --git a/aabiot/__init__.py b/aabiot/__init__.py deleted file mode 100644 index bde0cbe..0000000 --- a/aabiot/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -from aabiot.LED import LED -from aabiot.DoubleReset import DoubleReset - -print("AABIOT v0.1 imported") diff --git a/mipyiot/__init__.py b/mipyiot/__init__.py new file mode 100644 index 0000000..65f507b --- /dev/null +++ b/mipyiot/__init__.py @@ -0,0 +1,4 @@ +from mipyiot.led import LED +from mipyiot.doublereset import DoubleReset + +#print("AABIOT v0.1 imported") diff --git a/aabiot/DoubleReset.py b/mipyiot/doublereset.py similarity index 100% rename from aabiot/DoubleReset.py rename to mipyiot/doublereset.py diff --git a/aabiot/LED.py b/mipyiot/led.py similarity index 100% rename from aabiot/LED.py rename to mipyiot/led.py diff --git a/aabiot/wiegand.py b/mipyiot/wiegand.py similarity index 100% rename from aabiot/wiegand.py rename to mipyiot/wiegand.py