Re-ordering import statements.

pull/61/head
Christian T. Jacobs 2017-07-06 00:18:42 +01:00
rodzic e3cd2d2e39
commit 74256cd7b5
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -32,14 +32,14 @@ import sys
import signal
import pkg_resources
# This will help Python find the PyQSO modules that need to be imported below.
pyqso_path = os.path.join(os.path.realpath(os.path.dirname(__file__)), os.pardir)
sys.path.insert(0, pyqso_path)
import logging
logging.basicConfig(level=logging.INFO)
logging.info("PyQSO version 1.0.0")
# This will help Python find the PyQSO modules that need to be imported below.
pyqso_path = os.path.join(os.path.realpath(os.path.dirname(__file__)), os.pardir)
sys.path.insert(0, pyqso_path)
# PyQSO modules.
from pyqso.adif import *
from pyqso.logbook import *