Skip to content

Commit

Permalink
Fix typing error in pylint/checkers/imports.py
Browse files Browse the repository at this point in the history
	# checker for tests
  • Loading branch information
Pierre-Sassoulas committed Sep 14, 2021
1 parent 1a8fbb2 commit 5c6f8d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/checkers/imports.py
Expand Up @@ -190,7 +190,7 @@ def _make_graph(filename: str, dep_info: Dict[str, List[str]], sect: VNode, gtyp
report's section
"""
outputfile = _dependencies_graph(filename, dep_info)
sect.append(Paragraph(f"{gtype}imports graph has been written to {outputfile}"))
sect.append(Paragraph((f"{gtype}imports graph has been written to {outputfile}",)))


# the import checker itself ###################################################
Expand Down

0 comments on commit 5c6f8d6

Please sign in to comment.