Skip to content

Commit

Permalink
Set some pylint warning to ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
abusi committed Nov 15, 2021
1 parent 42f1943 commit ab91e60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ disable=missing-docstring,
useless-return,
docstring-first-line-empty,
missing-raises-doc,
raise-missing-from
raise-missing-from,
consider-using-f-string,
no-self-use,
missing-param-doc,
redundant-returns-doc


[REPORTS]
Expand Down
2 changes: 1 addition & 1 deletion tartiflette/utils/directives.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ async def directive_executor(
argument coercion process
:param wrapped_func: the inner callable to call after the directive
:type directive_func: Callable
:type directive_args: Callable
:type directive_arguments_coercer: Callable
:type wrapped_func: Callable
:type context_coercer: Optional[Any]
:return: the computed value
Expand Down

0 comments on commit ab91e60

Please sign in to comment.