mirror of
https://github.com/nqrduck/nqrduck-autotm.git
synced 2024-12-21 15:20:27 +00:00
Removed unnecessary linting ignore setting.
This commit is contained in:
parent
bfbc20c2e9
commit
3fff314526
2 changed files with 2 additions and 3 deletions
|
@ -49,9 +49,6 @@ extend-select = [
|
||||||
"D", # pydocstyle
|
"D", # pydocstyle
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.ruff.lint.per-file-ignores]
|
|
||||||
"__init__.py" = ["F401"]
|
|
||||||
|
|
||||||
[tool.ruff.lint.pydocstyle]
|
[tool.ruff.lint.pydocstyle]
|
||||||
convention = "google"
|
convention = "google"
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
"""The NQRduck AutoTM module. It is used to automatically tune and match magnetic resonance probe coils."""
|
"""The NQRduck AutoTM module. It is used to automatically tune and match magnetic resonance probe coils."""
|
||||||
|
|
||||||
from .autotm import AutoTM as Module
|
from .autotm import AutoTM as Module
|
||||||
|
|
||||||
|
__all__ = ["Module"]
|
||||||
|
|
Loading…
Reference in a new issue