Skip to content

Commit

Permalink
fix: pydocstyle kwargs klen#232
Browse files Browse the repository at this point in the history
  • Loading branch information
villainy committed Jan 9, 2023
1 parent 53ad214 commit 7795731
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pylama/lint/pylama_pydocstyle.py
Expand Up @@ -33,8 +33,8 @@ def run_check(self, ctx: RunContext): # noqa
for err in PyDocChecker().check_source(
ctx.source,
ctx.filename,
params.get("ignore_decorators"),
params.get("ignore_inline_noqa", False),
ignore_decorators=params.get("ignore_decorators"),
ignore_inline_noqa=params.get("ignore_inline_noqa", False),
):
if convention_codes is None or err.code in convention_codes:
ctx.push(
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Expand Up @@ -74,6 +74,8 @@ ignore = D,C,W,E1103

[mypy]
ignore_missing_imports = True
no_implicit_optional = False
disable_error_code = annotation-unchecked

[tox:tox]
envlist = py37,py38,py39,py310
Expand Down

0 comments on commit 7795731

Please sign in to comment.