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,12 +1,20 @@
# Python imports
import os, threading, subprocess, time, inspect, hashlib
import os
import threading
import subprocess
import time
import inspect
import hashlib
from datetime import datetime
# Gtk imports
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('GdkPixbuf', '2.0')
from gi.repository import Gtk, GLib, Gio, GdkPixbuf
from gi.repository import Gtk
from gi.repository import GLib
from gi.repository import Gio
from gi.repository import GdkPixbuf
# Application imports
from plugins.plugin_base import PluginBase