Bringing to latest changes #3

Merged
itdominator merged 41 commits from develop into master 2022-07-16 19:14:30 +00:00
5 changed files with 6 additions and 5 deletions
Showing only changes of commit 7b4bbd7c2b - Show all commits

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
.idea/
# ---> Python
# Byte-compiled / optimized / DLL files
__pycache__/

View File

@ -1,5 +1,5 @@
# Python imports
import traceback, threading, inspect, os, gc, time
import os, gc, threading, time
# Lib imports
import gi

View File

@ -1,5 +1,5 @@
# Python imports
import threading, socket, time
import threading, time
from multiprocessing.connection import Listener, Client
# Lib imports

View File

@ -4,7 +4,7 @@
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('Gdk', '3.0')
from gi.repository import Gtk, Gdk, Gio
from gi.repository import Gtk, Gdk
# Application imports

View File

@ -4,8 +4,7 @@ import os
# Lib imports
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('Gdk', '3.0')
from gi.repository import Gtk, Gdk
from gi.repository import Gtk
# Application imports
from . import WidgetMixin