From 0913ae694cb5c30e5f6f7e6829b81eec6c2a4e96 Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Wed, 16 Oct 2019 06:50:33 -0700 Subject: [PATCH] Silence some pylint warnings --- bin/lutris | 3 ++- lutris/sysoptions.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/lutris b/bin/lutris index 46529ce74..503cc4370 100755 --- a/bin/lutris +++ b/bin/lutris @@ -11,6 +11,7 @@ # You should have received a copy of the GNU General Public License along # with this program. If not, see . +"""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)) diff --git a/lutris/sysoptions.py b/lutris/sysoptions.py index 08af2862c..56a1e22d5 100644 --- a/lutris/sysoptions.py +++ b/lutris/sysoptions.py @@ -1,4 +1,5 @@ """Options list for system config.""" +# pylint: disable=invalid-name import os import glob from collections import OrderedDict