This commit is contained in:
Mathieu Comandon 2020-07-25 17:25:11 -07:00
parent 99adca4d84
commit d14438bab4
2 changed files with 2 additions and 3 deletions

View file

@ -4,11 +4,11 @@ from gettext import gettext as _
from gi.repository import GObject, Gtk, Pango
from lutris import pga, platforms, runners
from lutris.gui.widgets.utils import load_icon_theme
from lutris.game import Game
from lutris.gui.config.runner import RunnerConfigDialog
from lutris.gui.dialogs.runner_install import RunnerInstallDialog
from lutris.gui.dialogs.runners import RunnersDialog
from lutris.gui.widgets.utils import load_icon_theme
TYPE = 0
SLUG = 1
@ -17,7 +17,6 @@ LABEL = 3
GAMECOUNT = 4
class SidebarRow(Gtk.ListBoxRow):
def __init__(self, id_, type_, name, icon, application=None):

View file

@ -1,7 +1,7 @@
"""Utility module to handle media resources"""
import os
from gi.repository import GLib, Gtk
from gi.repository import GLib
from lutris import settings
from lutris.util import system