From 65942c08cf6440dd19f14885bbc3b59e842b960b Mon Sep 17 00:00:00 2001 From: Rebecca Breu Date: Tue, 7 May 2024 22:03:43 +0200 Subject: [PATCH] Fix reading docs with importlib.resources in Python 3.9 --- beeref/documentation/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 beeref/documentation/__init__.py diff --git a/beeref/documentation/__init__.py b/beeref/documentation/__init__.py new file mode 100644 index 0000000..42348b9 --- /dev/null +++ b/beeref/documentation/__init__.py @@ -0,0 +1,3 @@ +# Reading files in this directory with importlib.resources.files with +# Python 3.9 requires an __init__.py file here. Later version are fine +# without.