Removed old imports used for python 2

This commit is contained in:
Manuel Cortez 2022-02-24 12:43:06 -06:00
parent af4e72ee27
commit 085c9038b5
No known key found for this signature in database
GPG Key ID: 9E0735CA15EFE790
3 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" this package contains code related to Sessions. """ this package contains code related to Sessions.
In TWBlue, a session module defines everything a social network needs to be used in the program.""" In TWBlue, a session module defines everything a social network needs to be used in the program."""
from __future__ import unicode_literals
# let's define a global object for storing sessions across the program. # let's define a global object for storing sessions across the program.
sessions = {} sessions = {}

View File

@ -4,12 +4,12 @@ import paths
import time import time
import logging import logging
import wx import wx
import mastodon
import config import config
import config_utils import config_utils
import output import output
import application import application
from pubsub import pub from pubsub import pub
import mastodon
from mysc.thread_utils import call_threaded from mysc.thread_utils import call_threaded
from sessions import base from sessions import base
from .wxUI import authorisationDialog from .wxUI import authorisationDialog

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import unicode_literals
import wx import wx
class authorisationDialog(wx.Dialog): class authorisationDialog(wx.Dialog):