An expression is accessing the value of a variable that was neither initialized nor defined as a specific data type.
To correct this error
-
Initialize the variable before using it.
-
Declare the variable using type annotation.
An expression is accessing the value of a variable that was neither initialized nor defined as a specific data type.
Initialize the variable before using it.
Declare the variable using type annotation.