Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ channels:
- defaults
dependencies:
- python>=3.9,<3.12
- importlib-metadata>=7.0.0
- jinja2>=3.1.3
- pytest==7.4.0
- pytest-mock==3.11.1
Expand Down
6 changes: 3 additions & 3 deletions src/api/v1/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from src.api.v1.models import (
BaseQueryParams,
BaseHeaders,
ResampleInterpolateRow,
ResampleInterpolateResponse,
HTTPError,
RawQueryParams,
TagsQueryParams,
Expand Down Expand Up @@ -73,7 +73,7 @@ def plot_events_get(
description=get_description,
tags=["Events"],
responses={
200: {"model": ResampleInterpolateRow},
200: {"model": ResampleInterpolateResponse},
400: {"model": HTTPError},
},
openapi_extra={
Expand Down Expand Up @@ -114,7 +114,7 @@ async def plot_get(
description=post_description,
tags=["Events"],
responses={
200: {"model": ResampleInterpolateRow},
200: {"model": ResampleInterpolateResponse},
400: {"model": HTTPError},
},
openapi_extra={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from .spark.ssip_pi_binary_file_to_pcdm import *
from .spark.ssip_pi_binary_json_to_pcdm import *
from .spark.aio_json_to_pcdm import *
from .spark.opcua_json_to_pcdm import *
from .spark.iso import *
from .spark.edgex_opcua_json_to_pcdm import *
from .spark.ecmwf.nc_extractbase_to_weather_data_model import *
Expand Down