mirror of
https://github.com/nqrduck/nqrduck-spectrometer.git
synced 2025-01-05 07:08:07 +00:00
Removed unnecessary linting ignore setting.
This commit is contained in:
parent
fbe5a89567
commit
f2180af979
2 changed files with 3 additions and 4 deletions
|
@ -53,9 +53,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,4 @@
|
||||||
"""Init for importing the module."""
|
"""Init for importing the module."""
|
||||||
from .spectrometer import Spectrometer as Module
|
from .spectrometer import Spectrometer as Module
|
||||||
|
|
||||||
|
__all__ = ["Module"]
|
Loading…
Reference in a new issue