Skip to content

Commit 82d34d2

Browse files
authored
Merge pull request #7 from neutrinoceros/typos_VNE0003
fix typos in VNE003
2 parents ef74610 + 4c37b2d commit 82d34d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test.py:2:1: VNE002 variable name should be clarified
4848
|:----------:|:-------------------------------------------------------:|
4949
| VNE001 | single letter variable names like 'XXX' are not allowed |
5050
| VNE002 | variable name 'XXX' should be clarified |
51-
| VNE003 | variable names that shadows buildins are not allowed |
51+
| VNE003 | variable names that shadow builtins are not allowed |
5252

5353
## Contributing
5454

flake8_variables_names/checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def get_varname_errors(self, var_name: str, var_ast_node) -> List[Tuple[int, int
110110
errors.append((
111111
var_ast_node.lineno,
112112
var_ast_node.col_offset,
113-
'VNE003 variable names that shadows buildins are not allowed',
113+
'VNE003 variable names that shadow builtins are not allowed',
114114
))
115115

116116
return errors

0 commit comments

Comments
 (0)