From 9f9dae6d6d92736c7efbb6dfa55c2f72e5eaf9db Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Mon, 20 Jan 2025 22:39:13 -0800 Subject: [PATCH] fix: Fix missing cloud/ subfolder The cloud/ folder was added in 1.2.0, but was not being packaged correctly due to a missing __init__.py file. This bug affected the 1.2.0 and 1.2.1 releases, making both unusable. Fixes #234 --- streamer/cloud/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 streamer/cloud/__init__.py diff --git a/streamer/cloud/__init__.py b/streamer/cloud/__init__.py new file mode 100644 index 0000000..b6e690f --- /dev/null +++ b/streamer/cloud/__init__.py @@ -0,0 +1 @@ +from . import *