omnata-plugin-runtime 0.6.1__tar.gz → 0.6.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/PKG-INFO +1 -1
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/pyproject.toml +1 -1
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/omnata_plugin.py +2 -2
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/LICENSE +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/README.md +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/__init__.py +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/api.py +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/configuration.py +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/forms.py +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/logging.py +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/plugin_entrypoints.py +0 -0
- {omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/rate_limiting.py +0 -0
@@ -2397,7 +2397,7 @@ def find_udtf_classes(path:str = '.') -> List[UDTFDefinition]:
|
|
2397
2397
|
matching_classes = []
|
2398
2398
|
|
2399
2399
|
# Iterate over all modules in the current directory
|
2400
|
-
for
|
2400
|
+
for importer, module_name, ispkg in pkgutil.walk_packages(path=[current_dir]):
|
2401
2401
|
# Import the module
|
2402
2402
|
module = importlib.import_module(module_name)
|
2403
2403
|
|
@@ -2512,7 +2512,7 @@ def find_udf_functions(path:str = '.') -> List[UDFDefinition]:
|
|
2512
2512
|
matching_classes = []
|
2513
2513
|
|
2514
2514
|
# Iterate over all modules in the current directory
|
2515
|
-
for
|
2515
|
+
for importer, module_name, ispkg in pkgutil.walk_packages(path=[current_dir]):
|
2516
2516
|
# Import the module
|
2517
2517
|
module = importlib.import_module(module_name)
|
2518
2518
|
|
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/__init__.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/api.py
RENAMED
File without changes
|
File without changes
|
{omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/forms.py
RENAMED
File without changes
|
{omnata_plugin_runtime-0.6.1 → omnata_plugin_runtime-0.6.2}/src/omnata_plugin_runtime/logging.py
RENAMED
File without changes
|
File without changes
|
File without changes
|