Remove encoding headers

This commit is contained in:
Mathieu Comandon 2018-11-18 16:33:42 -08:00
parent 6faad21e55
commit 145ba65c71
17 changed files with 1 additions and 20 deletions

View file

@ -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.

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Module that actually runs the games."""
import os
import json

View file

@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
import time
from gi.repository import Gtk, Gdk, GObject, Pango, GLib

View file

@ -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

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Misc widgets used in the GUI."""
import os

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Personnal Game Archive module. Handle local database of user's games."""
import os

View file

@ -1,4 +1,3 @@
# -*- coding:Utf-8 -*-
import os.path
import logging

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from lutris.runners.runner import Runner

View file

@ -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

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import os
import shlex
import stat

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import os
from lutris import settings
from lutris.runners.runner import Runner

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import os
from lutris.runners.runner import Runner
from lutris.util import system

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import re
import os
import shutil

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import os
import subprocess

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
import os
import subprocess

View file

@ -1,4 +1,3 @@
# -*- coding:Utf-8 -*-
"""Internal settings."""
import os
from gi.repository import GLib

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
"""Threading module, used to launch games while monitoring them."""
import os