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 15:31:57 UTC

(incubator-sdap-nexus) branch SDAP-511-b updated: Reset changed imports from saved webapp.py

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

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


The following commit(s) were added to refs/heads/SDAP-511-b by this push:
     new 6bd1b3e  Reset changed imports from saved webapp.py
6bd1b3e is described below

commit 6bd1b3ed562d29a1a7cdbc5f40861bebc5798fab
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Thu Feb 29 07:31:44 2024 -0800

    Reset changed imports from saved webapp.py
---
 analysis/webservice/webapp.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/analysis/webservice/webapp.py b/analysis/webservice/webapp.py
index f3608c8..a2365f0 100644
--- a/analysis/webservice/webapp.py
+++ b/analysis/webservice/webapp.py
@@ -23,9 +23,9 @@ import tornado.web
 from tornado.routing import Rule, RuleRouter, AnyMatches
 from tornado.options import define, options, parse_command_line
 
-from analysis.webservice.redirect import RemoteCollectionMatcher
-from analysis.webservice.nexus_tornado.app_builders import NexusAppBuilder
-from analysis.webservice.nexus_tornado.app_builders import RedirectAppBuilder
+from webservice.redirect import RemoteCollectionMatcher
+from webservice.nexus_tornado.app_builders import NexusAppBuilder
+from webservice.nexus_tornado.app_builders import RedirectAppBuilder
 
 try:
     from importlib.metadata import version as _version