Removed unnecessary linting ignore setting.

This commit is contained in:
jupfi 2024-06-01 21:01:12 +02:00
parent bfbc20c2e9
commit 3fff314526
2 changed files with 2 additions and 3 deletions

View file

@ -49,9 +49,6 @@ extend-select = [
"D", # pydocstyle
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.pydocstyle]
convention = "google"

View file

@ -1,3 +1,5 @@
"""The NQRduck AutoTM module. It is used to automatically tune and match magnetic resonance probe coils."""
from .autotm import AutoTM as Module
__all__ = ["Module"]