Coverage for mindsdb / integrations / handlers / oilpriceapi_handler / connection_args.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from collections import OrderedDict 

2 

3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE 

4 

5 

6connection_args = OrderedDict( 

7 api_key={ 

8 "type": ARG_TYPE.PWD, 

9 "description": "OilPriceAPI key to use for authentication.", 

10 "required": True, 

11 "label": "Api key", 

12 "secret": True 

13 } 

14) 

15 

16connection_args_example = OrderedDict( 

17 api_key="" 

18)