Skip to content

Commit

Permalink
Removed pylint pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecsilva committed Feb 13, 2024
1 parent f6da157 commit a9c2c67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core_codemods/file_resource_leak.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ def __init__(
context: CodemodContext,
results: list[Result],
file_context: FileContext,
*codemod_args, # pylint: disable=unused-argument
*codemod_args,
**codemod_kwargs,
) -> None:
del codemod_args
self.changed_nodes: dict[
cst.CSTNode, cst.CSTNode | cst.RemovalSentinel | cst.FlattenSentinel
] = {}
Expand Down

0 comments on commit a9c2c67

Please sign in to comment.