Skip to content
Snippets Groups Projects
Commit f2bae915 authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

correct codacy issues

parent 54392672
No related branches found
No related tags found
No related merge requests found
#! /usr/bin/env python #! /usr/bin/env python
from __future__ import absolute_import, print_function from __future__ import absolute_import, print_function
from builtins import str as unicode
import os import os
import sys import sys
...@@ -9,7 +8,7 @@ from wsgiref.simple_server import make_server ...@@ -9,7 +8,7 @@ from wsgiref.simple_server import make_server
# ensure geomag is on the path before importing # ensure geomag is on the path before importing
try: try:
import geomagio # noqa (tells linter to ignore this line.) import geomagio # noqa (tells linter to ignore this line.)
except: except ImportError:
path = os.path path = os.path
script_dir = path.dirname(path.abspath(__file__)) script_dir = path.dirname(path.abspath(__file__))
sys.path.append(path.normpath(path.join(script_dir, '..'))) sys.path.append(path.normpath(path.join(script_dir, '..')))
......
...@@ -26,6 +26,5 @@ __all__ = [ ...@@ -26,6 +26,5 @@ __all__ = [
'TimeseriesFactoryException', 'TimeseriesFactoryException',
'TimeseriesUtility', 'TimeseriesUtility',
'Util', 'Util',
'Url',
'WebService' 'WebService'
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment