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