Fix typo in error message

This commit is contained in:
Darren Burns
2022-02-03 11:03:02 +00:00
parent d5f90d651a
commit a0a2a0666f

View File

@@ -214,7 +214,7 @@ def _unresolved(
line_no, col = location
return UnresolvedVariableError(
f"variable ${variable_name} is not defined. "
f"attempted reference at location on line {line_no}, column {col}."
f"attempted reference at line {line_no}, column {col}."
)