And it raises `make suspicious` false positives.
For example::
- # The ``create_model`` decorator is defined by a library.
+ # The create_model decorator is defined by a library.
@typing.dataclass_transform()
def create_model(cls: Type[T]) -> Type[T]:
cls.__init__ = ...
cls.__ne__ = ...
return cls
- # The ``create_model`` decorator can now be used to create new model
+ # The create_model decorator can now be used to create new model
# classes, like this:
@create_model
class CustomerModel: