Revert hidden import in tr, try python2 imports first

This commit is contained in:
Dmitri Bogomolov 2021-05-16 23:01:06 +03:00
parent 7b84c396fb
commit 199b8c8ea5
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -3,11 +3,10 @@ Translating text
"""
import os
import sys
if sys.version_info[0] == 3:
from . import state
else:
try:
import state
except ImportError:
from . import state
class translateClass: