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,10 +1,15 @@
# Python imports
import threading, subprocess, signal, json, shlex
import threading
import subprocess
import signal
import json
import shlex
# Lib imports
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GLib
from gi.repository import Gtk
from gi.repository import GLib
# Application imports
from ..widgets.file_preview_widget import FilePreviewWidget

View File

@@ -1,11 +1,17 @@
# Python imports
import ctypes, threading, subprocess, signal, json, shlex
import ctypes
import threading
import subprocess
import signal
import json
import shlex
libgcc_s = ctypes.CDLL('libgcc_s.so.1')
# Lib imports
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, GLib
from gi.repository import Gtk
from gi.repository import GLib
# Application imports
from ..widgets.grep_preview_widget import GrepPreviewWidget