You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2024/02/29 00:20:39 UTC

(incubator-sdap-nexus) branch SDAP-511 updated: fix some incorrectly sed'd import statements

This is an automated email from the ASF dual-hosted git repository.

rkk pushed a commit to branch SDAP-511
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/SDAP-511 by this push:
     new befa7c0  fix some incorrectly sed'd import statements
befa7c0 is described below

commit befa7c0c677ff6eadb15245edac33770f3c0e47d
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Wed Feb 28 16:20:27 2024 -0800

    fix some incorrectly sed'd import statements
---
 analysis/webservice/algorithms/TimeSeries.py                      | 2 +-
 analysis/webservice/algorithms/TimeSeriesSolr.py                  | 2 +-
 analysis/webservice/algorithms_spark/TimeSeriesSpark.py           | 2 +-
 analysis/webservice/nexus_tornado/app_builders/NexusAppBuilder.py | 2 +-
 analysis/webservice/webapp_livy.py                                | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/analysis/webservice/algorithms/TimeSeries.py b/analysis/webservice/algorithms/TimeSeries.py
index 0113aa7..3454519 100644
--- a/analysis/webservice/algorithms/TimeSeries.py
+++ b/analysis/webservice/algorithms/TimeSeries.py
@@ -32,7 +32,7 @@ from nexustiles.nexustiles import NexusTileService
 from pytz import timezone
 from scipy import stats
 
-from analysis.webservice.import Filtering as filtering
+from analysis.webservice import Filtering as filtering
 from analysis.webservice.NexusHandler import nexus_handler
 from analysis.webservice.algorithms.NexusCalcHandler import NexusCalcHandler
 from analysis.webservice.webmodel import NexusResults, NexusProcessingException, NoDataException
diff --git a/analysis/webservice/algorithms/TimeSeriesSolr.py b/analysis/webservice/algorithms/TimeSeriesSolr.py
index 9cda980..dbada1b 100644
--- a/analysis/webservice/algorithms/TimeSeriesSolr.py
+++ b/analysis/webservice/algorithms/TimeSeriesSolr.py
@@ -26,7 +26,7 @@ import numpy as np
 from nexustiles.nexustiles import NexusTileService
 from scipy import stats
 
-from analysis.webservice.import Filtering as filt
+from analysis.webservice import Filtering as filt
 from analysis.webservice.NexusHandler import nexus_handler, DEFAULT_PARAMETERS_SPEC
 from analysis.webservice.algorithms.NexusCalcHandler import NexusCalcHandler
 from analysis.webservice.webmodel import NexusResults, NexusProcessingException, NoDataException
diff --git a/analysis/webservice/algorithms_spark/TimeSeriesSpark.py b/analysis/webservice/algorithms_spark/TimeSeriesSpark.py
index 10f798d..ae4c393 100644
--- a/analysis/webservice/algorithms_spark/TimeSeriesSpark.py
+++ b/analysis/webservice/algorithms_spark/TimeSeriesSpark.py
@@ -29,7 +29,7 @@ import shapely.wkt
 from backports.functools_lru_cache import lru_cache
 from pytz import timezone
 from scipy import stats
-from analysis.webservice.import Filtering as filtering
+from analysis.webservice import Filtering as filtering
 from analysis.webservice.NexusHandler import nexus_handler
 from analysis.webservice.algorithms_spark.NexusCalcSparkHandler import NexusCalcSparkHandler
 from analysis.webservice.algorithms_spark import utils
diff --git a/analysis/webservice/nexus_tornado/app_builders/NexusAppBuilder.py b/analysis/webservice/nexus_tornado/app_builders/NexusAppBuilder.py
index 9bd30b2..cc0d341 100644
--- a/analysis/webservice/nexus_tornado/app_builders/NexusAppBuilder.py
+++ b/analysis/webservice/nexus_tornado/app_builders/NexusAppBuilder.py
@@ -19,7 +19,7 @@ from functools import partial
 import pkg_resources
 import tornado
 from nexustiles.nexustiles import NexusTileService
-from analysis.webservice.import NexusHandler
+from analysis.webservice import NexusHandler
 from analysis.webservice.nexus_tornado.request.handlers import NexusRequestHandler
 from .HandlerArgsBuilder import HandlerArgsBuilder
 
diff --git a/analysis/webservice/webapp_livy.py b/analysis/webservice/webapp_livy.py
index e9688cd..4bf34be 100644
--- a/analysis/webservice/webapp_livy.py
+++ b/analysis/webservice/webapp_livy.py
@@ -19,7 +19,7 @@ import logging
 import sys
 import os
 import pkg_resources
-from analysis.webservice.import nexus_tornado
+from analysis.webservice import nexus_tornado
 from .nexus_tornado.options import define, options, parse_command_line
 from analysis.webservice.NexusLivyHandler import LivyHandler