Made imports pythonic

This commit is contained in:
2022-12-11 14:52:09 -06:00
parent 1e7ad1ea34
commit 9db3dea48a
9 changed files with 41 additions and 20 deletions

View File

@@ -1,11 +1,16 @@
# Python imports
import os, sys, importlib, traceback
from os.path import join, isdir
import os
import sys
import portlib
import traceback
from os.path import join
from os.path import isdir
# Lib imports
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk, Gio
from gi.repository import Gtk
from gi.repository import Gio
# Application imports
from .manifest import Plugin, ManifestProcessor