From 92e2c29bd6ffe51889b4db8b5995234b1d4c37f9 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 5 Dec 2022 16:39:33 +0000 Subject: [PATCH] enum.py renamed to subs.py. No changes to file contents. relative import changed in __init__.py --- obsws_python/__init__.py | 2 +- obsws_python/{enum.py => subs.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename obsws_python/{enum.py => subs.py} (100%) diff --git a/obsws_python/__init__.py b/obsws_python/__init__.py index 80251d6..b0e6d73 100644 --- a/obsws_python/__init__.py +++ b/obsws_python/__init__.py @@ -1,6 +1,6 @@ -from .enum import Subs from .events import EventClient from .reqs import ReqClient +from .subs import Subs from .version import version as __version__ __ALL__ = ["ReqClient", "EventClient", "Subs"] diff --git a/obsws_python/enum.py b/obsws_python/subs.py similarity index 100% rename from obsws_python/enum.py rename to obsws_python/subs.py