Import cleanup

This commit is contained in:
2023-01-29 00:06:52 -06:00
parent bd6076b4e7
commit b8306a9c4d
12 changed files with 25 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
# Python imports
import os
import threading
import ime
import time
from multiprocessing.connection import Client
from multiprocessing.connection import Listener

View File

@@ -1,7 +1,7 @@
# Python imports
import re
# Gtk imports
# Lib imports
import gi
gi.require_version('Gdk', '3.0')
from gi.repository import Gdk
@@ -10,6 +10,7 @@ from gi.repository import Gdk
def err(log = ""):
"""Print an error message"""
print(log)

View File

@@ -2,9 +2,13 @@
import os
import logging
# Lib imports
# Application imports
class Logger:
"""
Create a new logging object and return it.

View File

@@ -3,7 +3,7 @@ import os
import json
import inspect
# Gtk imports
# Lib imports
# Application imports
from .logger import Logger