Update client.py: Docs typo (#7585)

This commit is contained in:
Yanis Lukes 2024-03-04 00:24:46 +02:00 committed by GitHub
parent 24626ea362
commit 2de329d8cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -523,21 +523,21 @@ class Client:
'parameters': [
{
'label': 'num1',
'type_python': 'int | float',
'python_type': 'int | float',
'type_description': 'numeric value',
'component': 'Number',
'example_input': '5'
},
{
'label': 'operation',
'type_python': 'str',
'python_type': 'str',
'type_description': 'string value',
'component': 'Radio',
'example_input': 'add'
},
{
'label': 'num2',
'type_python': 'int | float',
'python_type': 'int | float',
'type_description': 'numeric value',
'component': 'Number',
'example_input': '5'
@ -546,7 +546,7 @@ class Client:
'returns': [
{
'label': 'output',
'type_python': 'int | float',
'python_type': 'int | float',
'type_description': 'numeric value',
'component': 'Number',
},