Silence some pylint warnings

This commit is contained in:
Mathieu Comandon 2019-10-16 06:50:33 -07:00
parent 542a69527a
commit 0913ae694c
2 changed files with 3 additions and 1 deletions

View file

@ -11,6 +11,7 @@
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
"""Main entry point for Lutris"""
import sys
import locale
import os
@ -32,5 +33,5 @@ except locale.Error:
from lutris.gui.application import Application
app = Application()
app = Application() # pylint: disable=invalid-name
sys.exit(app.run(sys.argv))

View file

@ -1,4 +1,5 @@
"""Options list for system config."""
# pylint: disable=invalid-name
import os
import glob
from collections import OrderedDict