Rename linting pass to match internal changes

The name is cleaner and more correct
This commit is contained in:
Arseny Kapoulkine 2021-05-30 11:55:52 -07:00 committed by GitHub
parent fc4cfede58
commit fff104b439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ print({
})
```
## DeadLocal (20)
## UninitializedLocal (20)
It's easy to forget to initialize a local variable and then proceed to use it regardless. This can happen due to a typo, or sometimes it can happen because the original variable definition is shadowed. When a local variable doesn't have an initial value and is used without ever being assigned to, this warning is emitted: