mirror of
https://github.com/lutris/lutris
synced 2024-11-02 11:48:38 +00:00
Remove encoding headers
This commit is contained in:
parent
6faad21e55
commit
145ba65c71
17 changed files with 1 additions and 20 deletions
|
@ -1,6 +1,4 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License version 3, as published
|
||||
# by the Free Software Foundation.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Module that actually runs the games."""
|
||||
import os
|
||||
import json
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import time
|
||||
|
||||
from gi.repository import Gtk, Gdk, GObject, Pango, GLib
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
import time
|
||||
import re
|
||||
|
@ -362,7 +361,7 @@ class InstallerWindow(Gtk.ApplicationWindow):
|
|||
self.install_button.set_visible(False)
|
||||
self.continue_button.show()
|
||||
self.continue_button.set_sensitive(False)
|
||||
|
||||
|
||||
if action == 'file':
|
||||
title = 'Select file'
|
||||
action = Gtk.FileChooserAction.OPEN
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Misc widgets used in the GUI."""
|
||||
import os
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Personnal Game Archive module. Handle local database of user's games."""
|
||||
|
||||
import os
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding:Utf-8 -*-
|
||||
import os.path
|
||||
import logging
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from lutris.runners.runner import Runner
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# It is pitch black. You are likely to be eaten by a grue.
|
||||
|
||||
from lutris.runners.runner import Runner
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
import shlex
|
||||
import stat
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
from lutris import settings
|
||||
from lutris.runners.runner import Runner
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
from lutris.runners.runner import Runner
|
||||
from lutris.util import system
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import os
|
||||
import shutil
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding:Utf-8 -*-
|
||||
"""Internal settings."""
|
||||
import os
|
||||
from gi.repository import GLib
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Threading module, used to launch games while monitoring them."""
|
||||
|
||||
import os
|
||||
|
|
Loading…
Reference in a new issue