mirror of
https://github.com/nqrduck/nqrduck-broadband.git
synced 2024-12-22 15:47:49 +00:00
Removed unnecessary linting ignore setting.
This commit is contained in:
parent
1fc523b271
commit
fdcf2b01c2
2 changed files with 4 additions and 4 deletions
|
@ -42,9 +42,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,2 +1,5 @@
|
||||||
"""Init file for the nqrduck_broadband package."""
|
"""The nqrduck_broadband package provides classes for performing broadband NQR measurements within the NQRduck project."""
|
||||||
|
|
||||||
from .broadband import Broadband as Module
|
from .broadband import Broadband as Module
|
||||||
|
|
||||||
|
__all__ = ["Module"]
|
||||||
|
|
Loading…
Reference in a new issue