mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix lint false positives.
This commit is contained in:
committed by
Martin Kosek
parent
fb329bc8b0
commit
1ac3ed2c27
@@ -587,9 +587,9 @@ class textui(backend.Backend):
|
||||
except EOFError:
|
||||
return -2
|
||||
|
||||
if resp.lower() == "q":
|
||||
if resp.lower() == "q": #pylint: disable=E1103
|
||||
return -2
|
||||
if resp.lower() == "a":
|
||||
if resp.lower() == "a": #pylint: disable=E1103
|
||||
return -1
|
||||
try:
|
||||
selection = int(resp) - 1
|
||||
|
||||
Reference in New Issue
Block a user