1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
from dataclasses import dataclass
from mypy.nodes import CallExpr, NameExpr, StrExpr
from refurb.error import Error
@dataclass
class ErrorInfo(Error):
"""
`print("")` can be simplified to just `print()`.
"""
name = "simplify-print"
code = 105
msg: str = 'Replace `print("")` with `print()`'
categories = ("builtin", "readability")
def check(node: CallExpr, errors: list[Error]) -> None:
match node:
case CallExpr(
callee=NameExpr(fullname="builtins.print"),
args=[StrExpr(value="")],
):
errors.append(ErrorInfo.from_node(node))
|