Skip to content

Commit

Permalink
Fix timeout parameter default value in get_inference() method (#126)
Browse files Browse the repository at this point in the history
Signed-off-by: Irene Bandera <[email protected]>
  • Loading branch information
irenebm authored Sep 10, 2024
1 parent e8284ec commit b3b37a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amlip_py/amlip_py/node/FiwareNode.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,15 +296,15 @@ def patch_inference(

def get_inference(
self,
timeout=0) -> dict:
timeout=None) -> dict:
"""
Get inference data from the Fiware context broker.
Parameters
----------
timeout : int
Timeout in seconds for the request.
Defaults to 0 (no timeout).
Defaults to None (no timeout).
Returns
-------
Expand Down

0 comments on commit b3b37a7

Please sign in to comment.