mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-05 17:01:06 +03:00
pylint flags "_" as bad variable name, its the gettext function
Throughout the fdroidserver code base, "_()" is used for localizing strings. So it should not be used as an ignored variable name. Those should be called "_ignored".
This commit is contained in:
parent
fb877c8b81
commit
007c62065d
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ notes=FIXME,XXX,TODO
|
|||
[BASIC]
|
||||
|
||||
# Good variable names which should always be accepted, separated by a comma
|
||||
good-names=i,j,k,ex,Run,_,e,f,fp
|
||||
good-names=i,j,k,ex,Run,f,fp
|
||||
|
||||
|
||||
[ELIF]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue