File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/robot/src/robotcode/robot/diagnostics Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 6
6
@final
7
7
class Error :
8
8
VARIABLE_NOT_FOUND = "VariableNotFound"
9
- ENVIROMMENT_VARIABLE_NOT_FOUND = "EnvirommentVariableNotFound "
9
+ ENVIRONMENT_VARIABLE_NOT_FOUND = "EnvironmentVariableNotFound "
10
10
KEYWORD_NOT_FOUND = "KeywordNotFound"
11
11
LIBRARY_CONTAINS_NO_KEYWORDS = "LibraryContainsNoKeywords"
12
12
POSSIBLE_CIRCULAR_IMPORT = "PossibleCircularImport"
Original file line number Diff line number Diff line change @@ -476,7 +476,7 @@ def _handle_find_variable_result(
476
476
range = range_from_token (var_token ),
477
477
message = f"Environment variable '{ var .name } ' not found." ,
478
478
severity = severity ,
479
- code = Error .ENVIROMMENT_VARIABLE_NOT_FOUND ,
479
+ code = Error .ENVIRONMENT_VARIABLE_NOT_FOUND ,
480
480
)
481
481
482
482
if var .type == VariableDefinitionType .ENVIRONMENT_VARIABLE :
You can’t perform that action at this time.
0 commit comments