From db125187c9083ae2774acefa52cc74732535cd16 Mon Sep 17 00:00:00 2001 From: cswimr Date: Sat, 25 Jan 2025 22:09:08 +0000 Subject: [PATCH] fix(aurora): add missing `__init__.py` file --- aurora/models/__init__.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 aurora/models/__init__.py diff --git a/aurora/models/__init__.py b/aurora/models/__init__.py new file mode 100644 index 0000000..f15d56d --- /dev/null +++ b/aurora/models/__init__.py @@ -0,0 +1,2 @@ +from .moderation_types import * # noqa: F403 +# This just imports all the built-in moderation types so they can be registered, as they aren't imported anywhere else.