Changing to pythonic imports, restructured mixins layout

This commit is contained in:
2022-11-28 22:34:13 -06:00
parent 9bd5697677
commit f2090a7d46
40 changed files with 190 additions and 113 deletions

View File

@@ -1,11 +1,18 @@
# Python imports
import os, threading, subprocess, time, pwd, grp
import os
import threading
import subprocess
import time
import pwd
import grp
from datetime import datetime
# Lib imports
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GLib, Gio
from gi.repository import Gtk
from gi.repository import GLib
from gi.repository import Gio
# Application imports
from plugins.plugin_base import PluginBase