Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sauyon committed Nov 2, 2022
1 parent 99286e7 commit 2a7bf26
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/quickstart/service.py
Expand Up @@ -9,7 +9,9 @@


@svc.api(
input=NumpyNdarray.from_sample(np.array([[4.9, 3.0, 1.4, 0.2]], dtype=np.double), enforce_shape=False),
input=NumpyNdarray.from_sample(
np.array([[4.9, 3.0, 1.4, 0.2]], dtype=np.double), enforce_shape=False
),
output=NumpyNdarray(),
)
async def classify(input_series: np.ndarray) -> np.ndarray:
Expand Down

0 comments on commit 2a7bf26

Please sign in to comment.