Skip to content

Commit

Permalink
enable pep8-naming
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjleo committed Dec 11, 2024
1 parent 49934e1 commit 9857799
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ select = [
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"N", # pep8-naming
"D", # pydocstyle
"UP", # pyupgrade
"ANN", # flake8-annotations
Expand All @@ -76,6 +77,8 @@ select = [
"PL", # Pylint
]
ignore = [
"N803", # invalid-argument-name
"N806", # non-lowercase-variable-in-function
"D100", # undocumented-public-module
"D203", # one-blank-line-before-class
"D213", # multi-line-summary-second-line
Expand Down
1 change: 0 additions & 1 deletion src/fast_forward/util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
""".. include:: ../docs/util.md""" # noqa: D400, D415


from typing import TYPE_CHECKING

import numpy as np
Expand Down

0 comments on commit 9857799

Please sign in to comment.