Add missing newlines, allow init exports

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2024-09-24 00:43:37 +02:00
parent 0f1a6431e5
commit fd1cf9b337
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57
3 changed files with 3 additions and 2 deletions

View File

@ -8,4 +8,4 @@ An English copy of the Licence is shipped in a file called LICENSE along with th
You may obtain copies of the Licence in any of the official languages at https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12.
"""
from .__version__ import __version__
from .__version__ import __version__ as __version__

View File

@ -28,6 +28,7 @@ preview = true
explicit-preview-rules = true
[lint.per-file-ignores]
"pyacl/__init__.py" = ["PLC0414"] # allow explicit re-exports / avoid conflict with F401
"tests/*.py" = ["S101"] # allow "assert" in test suites
[lint.pydocstyle]