omnata-plugin-runtime 0.6.3a170__tar.gz → 0.6.4__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/omnata_plugin.py +4 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/LICENSE +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/README.md +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -2357,6 +2357,8 @@ def omnata_udtf(
|
|
2357
2357
|
data_type='OBJECT',
|
2358
2358
|
description='The connection object, obtained from calling PLUGIN.PLUGIN_CONNECTION.')] + params
|
2359
2359
|
cls._omnata_udtf_params = params_new
|
2360
|
+
else:
|
2361
|
+
cls._omnata_udtf_params = params
|
2360
2362
|
if len(cls._omnata_udtf_params) != len(function_params) -1:
|
2361
2363
|
raise ValueError(f"You must document all the parameters of the 'process' function in the @omnata_udtf decorator in the same order ('connection_parameters' will be included automatically).")
|
2362
2364
|
|
@@ -2471,6 +2473,8 @@ def omnata_udf(
|
|
2471
2473
|
data_type='OBJECT',
|
2472
2474
|
description='The connection object, obtained from calling PLUGIN.PLUGIN_CONNECTION.')] + params
|
2473
2475
|
func._omnata_udf_params = params_new
|
2476
|
+
else:
|
2477
|
+
func._omnata_udf_params = params
|
2474
2478
|
if len(func._omnata_udf_params) != len(function_params):
|
2475
2479
|
raise ValueError(f"You must document all the parameters of the function in the @omnata_udf decorator in the same order ('connection_parameters' will be included automatically).")
|
2476
2480
|
|
File without changes
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.6.3a170 → omnata_plugin_runtime-0.6.4}/src/omnata_plugin_runtime/logging.py
RENAMED
File without changes
|
File without changes
|
File without changes
|