Creates a new Python assignment statement.
The configuration arguments
Readonly
targetThe target variable name
Readonly
valueThe value to assign
Optional
Readonly
typeType annotation for the target
Readonly
isWhether this is a class variable
Writes the assignment statement to the writer.
The writer to write to
Returns the string representation of the AST node. This method creates a new Writer instance and writes the node's content to it.
The string representation of the AST node
Represents a Python assignment statement. This class handles the generation of Python assignment statements, which can include type annotations and handle class vs. instance variables.