mirror of
https://github.com/lutris/lutris
synced 2024-11-02 11:48:38 +00:00
Silence some pylint warnings
This commit is contained in:
parent
542a69527a
commit
0913ae694c
2 changed files with 3 additions and 1 deletions
|
@ -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))
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
"""Options list for system config."""
|
||||
# pylint: disable=invalid-name
|
||||
import os
|
||||
import glob
|
||||
from collections import OrderedDict
|
||||
|
|
Loading…
Reference in a new issue