Open
Description
Syntax checkers do not like variable name inside sentences. Humans can manage, but it's still harder to read. So string like this:
should be inside quote:
def func(named_parameter: str, other, word) -> None:
"""named_parameter should have a nice name
Other information here, if there's no underscore in it it's a normal word.
"""
print(named_parameter)
- """named_parameter should have a nice name
+ """'named_parameter' should have a nice name