From 5a4d929c175443a6695045ddc90fec78a93993f9 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 21 Mar 2022 11:53:58 +0000 Subject: [PATCH] Add some more dummy modules --- wagtail/core/log_actions.py | 1 + wagtail/core/permissions.py | 1 + wagtail/core/telepath.py | 1 + wagtail/core/widget_adapters.py | 1 + wagtail/tests/dummy_external_storage.py | 1 + 5 files changed, 5 insertions(+) create mode 100644 wagtail/core/log_actions.py create mode 100644 wagtail/core/permissions.py create mode 100644 wagtail/core/telepath.py create mode 100644 wagtail/core/widget_adapters.py create mode 100644 wagtail/tests/dummy_external_storage.py diff --git a/wagtail/core/log_actions.py b/wagtail/core/log_actions.py new file mode 100644 index 0000000000..83485f88be --- /dev/null +++ b/wagtail/core/log_actions.py @@ -0,0 +1 @@ +from wagtail.log_actions import * # noqa diff --git a/wagtail/core/permissions.py b/wagtail/core/permissions.py new file mode 100644 index 0000000000..a01545fef4 --- /dev/null +++ b/wagtail/core/permissions.py @@ -0,0 +1 @@ +from wagtail.permissions import * # noqa diff --git a/wagtail/core/telepath.py b/wagtail/core/telepath.py new file mode 100644 index 0000000000..93c5b35aad --- /dev/null +++ b/wagtail/core/telepath.py @@ -0,0 +1 @@ +from wagtail.telepath import * # noqa diff --git a/wagtail/core/widget_adapters.py b/wagtail/core/widget_adapters.py new file mode 100644 index 0000000000..fbdc2225bd --- /dev/null +++ b/wagtail/core/widget_adapters.py @@ -0,0 +1 @@ +from wagtail.widget_adapters import * # noqa diff --git a/wagtail/tests/dummy_external_storage.py b/wagtail/tests/dummy_external_storage.py new file mode 100644 index 0000000000..9a3e238636 --- /dev/null +++ b/wagtail/tests/dummy_external_storage.py @@ -0,0 +1 @@ +from wagtail.test.dummy_external_storage import * # noqa