Skip to content

Commit

Permalink
Fix pywps.dblog import
Browse files Browse the repository at this point in the history
  • Loading branch information
gschwind committed Feb 9, 2024
1 parent dd29242 commit 667aea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pywps/response/basic.py
Expand Up @@ -4,7 +4,6 @@
if TYPE_CHECKING:
from pywps import WPSRequest

from pywps.dblog import store_status
from pywps.response.status import WPS_STATUS
import os

Expand Down Expand Up @@ -49,6 +48,7 @@ def _update_status(self, status, message, status_percentage):
:param pywps.response.status.WPS_STATUS status: process status - user should usually
omit this parameter
"""
from pywps.dblog import store_status
self.message = message
self.status = status
self.status_percentage = status_percentage
Expand Down

0 comments on commit 667aea8

Please sign in to comment.