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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: omnata-plugin-runtime
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Classes and common runtime components for building and running Omnata Plugins
5
5
  Author: James Weakley
6
6
  Author-email: james.weakley@omnata.com
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "omnata-plugin-runtime"
3
- version = "0.6.1"
3
+ version = "0.6.2"
4
4
  description = "Classes and common runtime components for building and running Omnata Plugins"
5
5
  authors = ["James Weakley <james.weakley@omnata.com>"]
6
6
  readme = "README.md"
@@ -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 _, module_name, _ in pkgutil.iter_modules([current_dir]):
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 _, module_name, _ in pkgutil.iter_modules([current_dir]):
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